G
Guest
I have a table inside repeater like following:
<asp:Repeater id="Repeater1" runat="server">
<ItemTemplate>
<TABLE id="Table3" cellSpacing="1" cellPadding="1" width="300" border="1">
<TR>
<TD style="WIDTH: 59px; HEIGHT: 57px">
<asp:CheckBox id="CheckBox1" runat="server"></asp:CheckBox></TD>
<TD style="HEIGHT: 57px"><IMG style="WIDTH: 136px; HEIGHT: 30px"
height="30" alt="" src="" width="136"></TD>
</TR>
<TR>
<TD colSpan="2">
<asp:Label id="Label1" runat="server">Label</asp:Label></TD>
</TR>
</TABLE>
</ItemTemplate>
</asp:Repeater>
if I need to display the items in repeater like following :
item 1 Item4 Item7
Item 2 Item5 Item8
Item 3 Item6 Item9
Can I do it with repeater?
<asp:Repeater id="Repeater1" runat="server">
<ItemTemplate>
<TABLE id="Table3" cellSpacing="1" cellPadding="1" width="300" border="1">
<TR>
<TD style="WIDTH: 59px; HEIGHT: 57px">
<asp:CheckBox id="CheckBox1" runat="server"></asp:CheckBox></TD>
<TD style="HEIGHT: 57px"><IMG style="WIDTH: 136px; HEIGHT: 30px"
height="30" alt="" src="" width="136"></TD>
</TR>
<TR>
<TD colSpan="2">
<asp:Label id="Label1" runat="server">Label</asp:Label></TD>
</TR>
</TABLE>
</ItemTemplate>
</asp:Repeater>
if I need to display the items in repeater like following :
item 1 Item4 Item7
Item 2 Item5 Item8
Item 3 Item6 Item9
Can I do it with repeater?