I am having a problem with Repeaters. I have a table that I want to fill with
some data from my database. I have created the bacis structure for the table
and the repeater. It looks like this:
<asp:Repeater id="test" runat="server">
<HeaderTemplate><table border="1" width="100%"><tr><td></td>
</tr></HeaderTemplate>
<ItemTemplate><tr><td><%#Container.DataItem("")%></td><td><%#Container.DataItem(\
"")%></td><td><%#Container.DataItem("")%></td><td><%#Container.DataItem("")%></t\
d><td><%#Container.DataItem("")%></td><td><%#Container.DataItem("")%></td></tr><\
/ItemTemplate>
<FooterTemplate></table></FooterTemplate>
</asp:Repeater>
The 'table' element has a line under it indicating an error, when I put my
cursor
over it it says: the element 'table' is missing its closing tag or overlaps
with element 'HeaderTemplate'. what am I doing wrong here?