or
<table style="width: 662px;padding:0px;margin:0px"> <tr> <td style="width: 102px;padding:0px;margin:0px;"> <asp:Label ID="Label3" runat="server" Text="Tipo alloggiato:" Width="102px"></asp:Label> </td> <td style="width: 150px;padding:0px;margin:0px;"> <telerik:RadComboBox ID="tipoalloggiato" Runat="server" Culture="it-IT" Skin="Silk" Width="130px"> <Items> <telerik:RadComboBoxItem runat="server" Text="Ospite singolo" Value="16" /> <telerik:RadComboBoxItem runat="server" Text="Capo famiglia" Value="17" /> <telerik:RadComboBoxItem runat="server" Text="Capo gruppo" Value="18" /> </Items> </telerik:RadComboBox> </td> <td style="width: 105px;padding:0px;margin:0px"> <asp:Label ID="Label4" runat="server" Text="nr. componenti:" Width="105px"></asp:Label> </td> <td style="width: 70px;padding:0px;margin:0px"> <telerik:RadNumericTextBox ID="RadNumericTextBox1" Runat="server" Culture="it-IT" DbValueFactor="1" LabelWidth="0px" Skin="Silk" Value="1" Width="50px" DataType="System.Int32" MaxLength="4"> <NumberFormat ZeroPattern="n" DecimalDigits="0" DecimalSeparator="."></NumberFormat> <DisabledStyle Font-Underline="False" HorizontalAlign="Right" /> </telerik:RadNumericTextBox> </td> <td style="width: 85px;padding:0px;margin:0px"> <asp:Label ID="Label5" runat="server" Text="Tipo gruppo:" Width="85px"></asp:Label> </td> <td style="width: 160px;padding:0px;margin:0px"> <telerik:RadComboBox ID="tipogruppo" Runat="server" Skin="Silk"> </telerik:RadComboBox> </td> </tr> </table>IEnumerable<string> AdditionalCategoryTypes = LoadAdditionalCategoryTypes(thisObj.ProductID);foreach (string val in AdditionalCategoryTypes){ if (ddAdditionalCategoryTypes.Items.FindItemByValue(val) != null) ddAdditionalCategoryTypes.Items.FindItemByValue(val).Checked = true;}