improper html by DataList control???

dannyrid3

New Member
<asp:DataList id="PT_Menu" runat="server" EnableViewState="False" ShowFooter="False" ShowHeader="False" RepeatColumns="2" RepeatDirection="Horizontal"> <BR><ItemTemplate> <BR>data goes here... <BR></ItemTemplate> <BR></asp:DataList> <BR><BR>DataList control html output (with 3 records returned): <BR><BR><table ...> <BR><tr> <BR><td>data goes here...</td><td>data goes here...</td> <BR></tr> <BR><tr> <BR><td>data goes here...</td> <BR></tr> <BR></table> <BR>This table is missing additional <td></td> in the second row, <BR>which produces improper html. <BR><BR>Is there anything that can be done to fix this problem?
 
Back
Top