Hi,I'm having trouble listing records directly next to the current record in a table. Eg
<table>
<%Do while Not objRst.eof %>
<tr>
<td><%Response.write objRst("field_1_title")%></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><%Response.write objRst("field_2")%></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><%Response.write objRst("field_2")%></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><%Response.write objRst("field_3")%> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<% objRst.MoveNext %>
<% LOOP %>
</table>
Where each ' ' is i would like the details of the subsequent record and its field within the database, u get me? anyideas? Many Thanks
<table>
<%Do while Not objRst.eof %>
<tr>
<td><%Response.write objRst("field_1_title")%></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><%Response.write objRst("field_2")%></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><%Response.write objRst("field_2")%></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><%Response.write objRst("field_3")%> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<% objRst.MoveNext %>
<% LOOP %>
</table>
Where each ' ' is i would like the details of the subsequent record and its field within the database, u get me? anyideas? Many Thanks