<table>
<asp:Repeater ID="repCategory" runat="server" OnItemDataBound="repCategory_ItemDataBound">
<ItemTemplate>
<tr>
<td style="width: 100px; height:24px;" align="right">
<asp:Label ID="labCategoryName" runat="server" Text='<%# Eval("CategoryName") %>'></asp:Label>
<asp:HiddenField ID="hiddenCategoryID" runat="server" Value='<%# Eval("CategoryID") %>' />
:
</td>
<td>
<asp:CheckBoxList ID="cbSubCategoryName" runat="server" RepeatDirection="Horizontal" RepeatColumns="8">
</asp:CheckBoxList>
</td>
</tr>
</ItemTemplate>
</asp:Repeater>
<table>