I have the following code in the begining of my ASP file
<%
Set rstest = Server.CreateObject("ADODB.Recordset")
sql = "SELECT * FROM Division;"
rstest.Open sql, db
%>
In the body portion of the same ASP I have
<table width="200" border="1">
<tr>
<th>Date/Time</th>
<th>Officer</th>
<th>Comments</th>
</tr>
<tr>
<td><% = Date_Field %></td>
<td><% = First_Name %> <% = Last_Name %></td>
<td><% = Comments %></td>
</tr>
<tr>
<td><% = Date_Field %></td>
<td><% = First_Name %> <% = Last_Name %></td>
<td><% = Comments %></td>
</tr>
</table>
For some reason I only see one duplicate record, even though there are five unique records in my table. Why is this?