I’m trying to build a HTML table using an ASP repeater:
<asp:Repeater ID="RepeaterVersionsForPie" runat="server">
<ItemTemplate>
<table id="VersionsTable" >
<tr>
<th>
<%#Eval("nameVersion")%>
</th>
</tr>
</ItemTemplate>
<ItemTemplate>
<tbody>
<tr>
<td tag="<%#Eval("idVersion")%>">
<%#Eval("NumberOfCompaniesUsingThisVersion")%>
</td>
</tr>
</tbody>
</ItemTemplate>
<FooterTemplate>
</table>
</FooterTemplate>
</asp:Repeater>
This is a basic table which consists in two lines and X columns.
The second line appears without any problems while the first one is invisible.
Can anyone help to find what’s missing?
Thanks in advance.
I think the core problem is that
Repeaterisn’t designed to repeat horizontally.Maybe you should try using DataList which allows to specify the RepeatingDirection.
Update
If you don’t need to repeat horizontally (like your question suggests “…two lines and X columns”) your
Repeatershould look like thisNote that you must not repeat the
<table>in your<ItemTemplate>and to use single quotes when you need to put yourEvalinside an attribute.