從數(shù)據(jù)庫(kù)中讀取記錄橫向排列
更新時(shí)間:2008年04月08日 20:31:45 作者:
在一張網(wǎng)頁(yè)如果按以下代碼從數(shù)據(jù)庫(kù)中讀取記錄,
<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
那么以上代碼該怎么改,請(qǐng)高手幫忙一下
<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
那么以上代碼該怎么改,請(qǐng)高手幫忙一下
復(fù)制代碼 代碼如下:
<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>
您可能感興趣的文章:
相關(guān)文章
ASP 關(guān)于動(dòng)態(tài)數(shù)據(jù)顯示頁(yè)面得錨點(diǎn)
ASP 關(guān)于動(dòng)態(tài)數(shù)據(jù)顯示頁(yè)面得錨點(diǎn)...2007-09-09
asp實(shí)現(xiàn)獲取MSSQL數(shù)據(jù)庫(kù)表指定條件行數(shù)的函數(shù)
這篇文章主要介紹了asp實(shí)現(xiàn)獲取MSSQL數(shù)據(jù)庫(kù)表指定條件行數(shù)的函數(shù)的的相關(guān)資料,需要的朋友可以參考下2015-03-03
ReSaveRemoteFile函數(shù)之a(chǎn)sp實(shí)現(xiàn)查找文件保存替換的代碼
ReSaveRemoteFile函數(shù)之a(chǎn)sp實(shí)現(xiàn)查找文件保存替換的代碼...2007-09-09
C語(yǔ)言數(shù)組添加和刪除元素的實(shí)現(xiàn)
這篇文章主要介紹了C語(yǔ)言數(shù)組添加和刪除元素的實(shí)現(xiàn),文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2021-02-02
asp 獲取參數(shù)值與sql安全過(guò)濾參數(shù)函數(shù)代碼
下面的代碼是從aspcms系統(tǒng)中扒下的代碼,在獲取參數(shù)值與sql安全過(guò)濾參數(shù)方面做了限制2012-01-01
好久沒(méi)發(fā)布新玩意,完成了tsys的少年不在版
好久沒(méi)發(fā)布新玩意,完成了tsys的少年不在版...2007-01-01

