<tr>
<%
i=1
do while not rs.eof
%>
<td><%=rs("tubiao")%></td> '这里显示你要显示的内容
<%if i mod N = 0 then %></tr><%end if%> '这里 N 就是你每行要显示多少
<%
i=i+1
rs.movenext
loop
%>
<tr>
<%
i=1
do while not rs.eof
%>
<td><%=rs("tubiao")%></td> '这里显示你要显示的内容
<%if i mod N = 0 then %></tr><%end if%> '这里 N 就是你每行要显示多少
<%
i=i+1
rs.movenext
loop
%>