column span
Probably answered here before, but I couldn't find it.
I want to obtain rows of information from my DB. I want the results to span 5 columns then start on the next row.
i used to know how to do this, but it has been a long time.
so let's say all it is is a list of names. i want it to go 5 across and then start on the next row as shown
<%
do while not info.eof
%>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
<td>5</td>
</tr>
<tr>
<td>6</td>
<td>7</td>
<td>8</td>
<td>9</td>
<td>10</td>
</tr>
<% info.movenext
loop%>
any help would be appreciated
Probably answered here before, but I couldn't find it.
I want to obtain rows of information from my DB. I want the results to span 5 columns then start on the next row.
i used to know how to do this, but it has been a long time.
so let's say all it is is a list of names. i want it to go 5 across and then start on the next row as shown
<%
do while not info.eof
%>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
<td>5</td>
</tr>
<tr>
<td>6</td>
<td>7</td>
<td>8</td>
<td>9</td>
<td>10</td>
</tr>
<% info.movenext
loop%>
any help would be appreciated