What am I missing? If I have a Null field in a recordset, the border does not fill around the cell in the table. Can I do anything? I'm using this code:
<table border="1" width="100%">
<%do until rs.EOF%>
<tr>
<%for each x in rs.Fields%>
<td><%Response.Write(x.value)%></td>
<%next
rs.MoveNext%>
</tr>
<%loop
rs.close
conn.close
%>
</table>
If the table is in a div would it work if the border is for the div ex <div style="border:1px"><table>. <tr>...</tr> ... </table></div> You could just add the div if it's not there. Yes I prefer CSS.