关于循环的问题
以下的程序有个小问题,请高手指点:
数据库里的内容显示出来后,是竖列排的,我想要横排的,一行显示六个,显示六个后,自动换到下一行,请问程序何写?
----------------------
<%
do until rs.eof
IsCheck=""
If InStr(Session("ProductList"), rs("bookbm")) > 0 Then
IsCheck="Checked"
End If
%>
<table width="243" border="0" cellspacing="2" cellpadding="2">
<tr>
<td rowspan="4"><a href="photo/<% =rs("picture") %>" target="_blank"><img src="photo/<% =rs("picture") %>" width="75" height="75" border="1" ></a></td>
<td>
<input type="CheckBox" name="bookbm" value="<%=rs("bookbm")%>" <%=IsCheck%>>
商品编号<%=rs("bookname")%> </td>
</tr>
<tr>
<td>生产厂家<%=rs("Author")%></td>
</tr>
<tr>
<td>原价
<% =rs("price") %>
</td>
</tr>
<tr>
<td>售价
<% =rs("yhj") %>
</td>
</tr>
</table>
<%
i=i+1
if i>=rs.PageSize then exit do
rs.movenext
loop
rs.close
set rs=nothing
set conn=nothing
%>