I am writing a table out to display data from a recordset and my problem is that even though as you can see the table should not exceed that screen size, it does. My users will have to scroll a mile to the right to see the right most column...
Any ideas? I have already tried using width specifiers on each <td></td> and it doesn't help, what am I missing here?
Response.Write "<table border='1' width='100%'>" ' should do the trick!!!!
I am doing the usual..
Do While Not objRS.EOF
Response.Write( "<tr><td><f ont face='Verdana' size='2'>" & objRS("co_num") & "</font>" & "</td>" ) & vbCr
I know I should be using css.. anyway whats wrong with my table above???
Comment