WebAIM - Web Accessibility In Mind

E-mail List Archives

RE: Using <ASP:TABLE> controls in .NET and making it accessible

for

From: John Hamman
Date: Feb 11, 2004 12:30PM


Actually I ment does your code look like this

Table tbl = new Table();
TableRow tr = new TableRow();

Or does it look like this?

<asp:Table id=mytable runat=server>
......
And are you putting binding anything to the table.
Because if you are not binding anything, then its probably pointless and
extra work to make a asp:table.
Only use it if you are binding to it.

john