从数据库中读取记录横向排列
时间:2022-02-03 10:32:08|栏目:ASP代码|点击: 次
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<% do while not rs.eof %>
<tr>
<td height="80"><img src="<%= rs("图片")%>" width="160" height="80"></td>
</tr>
<% i=i+1
if i>=MaxPerPage then exit do
rs.movenext
loop
%>
</table>
记录排列如下:
1
2
3
4
5
如果我想把记录排列改成
1 2 3
4 5
那么以上代码该怎么改,请高手帮忙一下
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<% i=0
do while not rs.eof
if i mod 3 =0 then %>
<tr>
<% end if %>
<td height="80"><img src="<%= rs("图片")%>" width="160" height="80"></td>
<%
if (i+1) mod 3=0 then
%>
</tr>
<%end if%>
<%
i=i+1
if i>=MaxPerPage then exit do
rs.movenext
loop
%>
</table>
<% do while not rs.eof %>
<tr>
<td height="80"><img src="<%= rs("图片")%>" width="160" height="80"></td>
</tr>
<% i=i+1
if i>=MaxPerPage then exit do
rs.movenext
loop
%>
</table>
记录排列如下:
1
2
3
4
5
如果我想把记录排列改成
1 2 3
4 5
那么以上代码该怎么改,请高手帮忙一下
复制代码 代码如下:
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<% i=0
do while not rs.eof
if i mod 3 =0 then %>
<tr>
<% end if %>
<td height="80"><img src="<%= rs("图片")%>" width="160" height="80"></td>
<%
if (i+1) mod 3=0 then
%>
</tr>
<%end if%>
<%
i=i+1
if i>=MaxPerPage then exit do
rs.movenext
loop
%>
</table>
上一篇:asp中response.write('中文')或者js中文乱码问题
栏 目:ASP代码
下一篇:FpHtmlEnCode 函数之标题过滤特殊符号的代码
本文标题:从数据库中读取记录横向排列
本文地址:http://www.codeinn.net/misctech/192176.html