我想实现分页时,一行显示2条记录,每页3列,如何实现呢?请各位高人指点,非常感谢!
本人分页代码如下:
<table width="560" height="180" align="center" ><hr>
<% if rs.eof and rs.bof then
response.write "暂时没有图片!"
else
for r=1 to rs.pagesize%>
<tr >
<td width="250" height="140" align="center" valign="middle" class="text">
<a href="cs.asp?bh=<%=rs("bh")%>"><img src="<%=rs("small")%>" alt="点击查看详细内容" border="0" /></a></td>
<td height="140" align="left" valign="bottom" class="text"><p>
<a href="cs.asp?bh=<%=rs("bh")%>"><%=rs("cs_name")%> </a></p>
<p><a href="cs.asp?bh=<%=rs("bh")%>">查看详细内容
</a><a href="cs.asp?bh=<%=rs("bh")%>">
</a><a href="cs.asp?bh=<%=rs("bh")%>"> </a></p>
<hr></td>
</tr>
<%rs.movenext
if rs.eof then
exit for
end if
next
end if%>
</table>
<p class="text">显示第<%=page%>页/共<%=zongye%>页
<%if page=1 and not page=zongye then%>[首页|上页
<a href="jmcs.asp?page=<%=page+1%>"> 下页 </a>|
<a href="jmcs.asp?page=<%=zongye%>">尾页 </a>]
<%elseif page<>1 and not page=zongye then%>
<a href="jmcs.asp?page=1"> [首页 </a>|
<a href="jmcs.asp?page=<%=page-1%>"> 上页 </a>|
<a href="jmcs.asp?page=<%=page+1%>"> 下页 </a>|
<a href="jmcs.asp?page=<%=zongye%>"> 尾页 </a>]
<%elseif page=zongye then%>
<a href="jmcs.asp?page=1"> [首页 </a>|
<a href="jmcs.asp?page=<%=page-1%>"> 上页 </a>|
下页|尾页]
<%end if%>
<%
rs.close
set cn=nothing
%>
[求助]分页时如何实现一行2条记录?