I would suggest that the table does not exist from the point of view of the browser until you write out the tag of the final table.
You can write a bunch of divs with a style sheet that controls their width.
.column1 { width: 40px; } .column2 { width: 40px; } Response.Write("<div id=\"column1\">some text</div><div id=\"column2\">some text</div>"); Response.Flush();
Or can you write a whole table for each row ...?
Response.Write("<table><tr><td>some text</td></tr></table>"); Response.Flush();
Timothy Lee Russell
source share