Controlling field sizes of a table created with response.write
am 08.09.2005 17:18:03 von jackHi,
I am pulling all the fields from a table from a sql server database. The
fields are being displayed with the following code:
Response.Write "
" & rs("RoomID") & " | "" & rs("Type") & " | "" & rs("Smoking") & " | "" & rs("Capacity") & " | "" & rs("Rate") & " |
However, the fields are displayed with field size at its minimum. I am
trying to find out if it is possible to tweak the above code so that one can
controll the individual field spacing. Any help is appreciated in advance.
Thanks.