我想显示五行二列10条记录要怎么改?? <%do while not rs.eof %> <tr class="t"> <TABLE class=listbox cellSpacing=1 cellPadding=0 width=256 > <td>内容</ td> <% rs.movenext if rs.eof then exit do %> <td>内容</td> </tr> <% rs.movenext loop %>
<% sql="select top 10 * from table" ... %> <TABLE class=listbox cellSpacing=1 cellPadding=0 width=256 > <%do while not rs.eof %> <tr class="t"> <%for i=1 to 2%> <td>内容</ td> <% rs.movenext if rs.eof then exit for next %> </tr> <% if rs.eof then exit do loop %> </table>