ASP and/or HTML Table Question **Resolved**
I just started playing around with ASP and I am able to display data from a MS SQL db. One question I have that some of the rows from my query have fields that have either null or "" values. When these rows are displayed in the table the borders for those fields are not printed. I have tried appending and empty string to each field but to no avail.
Here is my Code:
VB Code:
Do While Not rstSimple.EOF
%>
<tr>
<td><%= rstSimple.Fields("Incident_Type").Value%></td>
<td><%= rstSimple.Fields("Filenum").Value%></td>
<td><%= rstSimple.Fields("CASENUM").Value%></td>
<td><%= rstSimple.Fields("STATUS").Value%></td>
</tr>
<%
rstSimple.MoveNext
Loop