Hopefully someone can assist me with this, I've searched all over and other than an inkling that maybe a counter is required I've drawn a blank.
Basically from an access database comes a list of schools and their details. At the top of the asp page is the list of all schools with links to the details further down the page.
Rather than have the school names at the top run on from each other, I'd like them to be in two columns but am unsure how to split a single field (school_name) into two columns.
<table>
<tr><td width="50%">
<a href="#<%=(rs.Fields("school_name").Value)%>">
<%=(rs.Fields("school_name").Value)%></a></td>
<td></td></table>
<%
rs.MoveNext
loop%><table>
<tr><td width="50%">
<a href="#<%=(rs.Fields("school_name").Value)%>">
<%=(rs.Fields("school_name").Value)%></a></td>
<td></td></table>
<%
rs.MoveNext
loop%>
Any assistance would be gratefully received. Many thanks
Basically from an access database comes a list of schools and their details. At the top of the asp page is the list of all schools with links to the details further down the page.
Rather than have the school names at the top run on from each other, I'd like them to be in two columns but am unsure how to split a single field (school_name) into two columns.
<table>
<tr><td width="50%">
<a href="#<%=(rs.Fields("school_name").Value)%>">
<%=(rs.Fields("school_name").Value)%></a></td>
<td></td></table>
<%
rs.MoveNext
loop%><table>
<tr><td width="50%">
<a href="#<%=(rs.Fields("school_name").Value)%>">
<%=(rs.Fields("school_name").Value)%></a></td>
<td></td></table>
<%
rs.MoveNext
loop%>
Any assistance would be gratefully received. Many thanks