Hi,
I am creating a dynamic table, which gets its information from an Access database. Some fields in the database are empty and the problem is that there is no border around the cell whose field is empty. I want to have borders around all cells regardless of whether the cell has text or not.
This is the code I have:
<table border="1" bordercolor="#CC0000">
<% while ((Repeat1__numRows-- != 0) && (!Rset.EOF)) { %>
<tr>
<td><%=(Rset.Fields.Item("Description"
.Value)%></td>
<td><%=(Rset.Fields.Item("Authors"
.Value)%></td>
<td><%=(Rset.Fields.Item("Title"
.Value)%></td>
</tr>
<%
Repeat1__index++;
Rset.MoveNext();
}
%>
</table>
I appreciate any suggestions you can give me.
Anoop.
I am creating a dynamic table, which gets its information from an Access database. Some fields in the database are empty and the problem is that there is no border around the cell whose field is empty. I want to have borders around all cells regardless of whether the cell has text or not.
This is the code I have:
<table border="1" bordercolor="#CC0000">
<% while ((Repeat1__numRows-- != 0) && (!Rset.EOF)) { %>
<tr>
<td><%=(Rset.Fields.Item("Description"
<td><%=(Rset.Fields.Item("Authors"
<td><%=(Rset.Fields.Item("Title"
</tr>
<%
Repeat1__index++;
Rset.MoveNext();
}
%>
</table>
I appreciate any suggestions you can give me.
Anoop.