J
Jeff
ASP.NET 2.0
Here I have a repeater control and a table server control, I wonder if this
approach is allowed in ASP.NET 2.0 or should I use a html table instead?
Originally I used a html table but now wants to convert it to a server
control so that I can apply themes to it
<asp:Repeater ID="rptUsers" runat="server"
OnItemDataBound="rptUsers_ItemDataBound" >
<HeaderTemplate><asp:Table ID="Table1" Width="100%"
runat="server"></HeaderTemplate>
<ItemTemplate >
<asp:TableRow>
any suggestions?
Here I have a repeater control and a table server control, I wonder if this
approach is allowed in ASP.NET 2.0 or should I use a html table instead?
Originally I used a html table but now wants to convert it to a server
control so that I can apply themes to it
<asp:Repeater ID="rptUsers" runat="server"
OnItemDataBound="rptUsers_ItemDataBound" >
<HeaderTemplate><asp:Table ID="Table1" Width="100%"
runat="server"></HeaderTemplate>
<ItemTemplate >
<asp:TableRow>
any suggestions?