- 1. 都市賽車6 (Asphalt 6)for Android v3.1.6 最...
- 2. 免費(fèi)ASP論壇程序Web Wiz Forums v9.71 英文版
- 3. 0323版 (卡巴斯基反病毒)病毒庫(kù) Kaspersky Anti-Vi...
- 4. 混淆代碼從而保護(hù)知識(shí)產(chǎn)權(quán)ASP混天綾 V 0.96
- 5. 精通ASP.NET網(wǎng)絡(luò)編程 電子書
- 6. 卡巴斯基(Kaspersky)2009 KAV v8.0.0.506 Final 官...
- 7. ASP代碼加密工具 10.0 英文版 Build 008
- 8. ASP代碼加密工具 10.0 中文旗艦版
- 9. 深度學(xué)習(xí)文章管理系統(tǒng)(自動(dòng)生成asp代碼) V0.05綠色...
- 10. 輕松學(xué)會(huì)ASP V1.0 綠色中文版
關(guān)于ASP橫向讀出數(shù)據(jù),一行列出三個(gè)記錄的實(shí)例教程
作者: 來源: 發(fā)布時(shí)間:2011-6-1 9:36:57 點(diǎn)擊:
本文章跟大家一起分享學(xué)習(xí)的是關(guān)于ASP橫向讀出數(shù)據(jù),一行列出三個(gè)記錄的實(shí)例教程,希望對(duì)正在學(xué)ASP的朋友們有所幫助。
方法一:
<table width="100%" align="center">
<%for i=1 to rs.recordcount
if (i mod 3=1) then
response.write"<tr>"
end if
response.write"<td>"&rs("XXX")&"</td>"
if (i mod 3=0) then
response.write"</tr>"
end if
rs.movenext
next%>
</table>
代碼一目了然,重點(diǎn)是第七行----if (i mod 3=0) then
這里是排成3列的,如果你想排成更多或更少,可自行修改。
方法二:
<%set rs=server.CreateObject("adodb.recordset")
SQL = "Select * From Shop_books Order By Adddate Desc"
rs.open SQL,conn,1,1
%>
<tr>
<td>
<table width="193" border="0" cellpadding="5" cellspacing="0">
<tr>
<% dim j
j=0
do while not rs.eof %>
<td width="193">
<table width="168" border="0" cellpadding="3" cellspacing="0">
<tr>
<td width="163"><a href=list03.asp?id=<%=rs("bookid")%>><img src="<%=trim(rs("bookpic"))%>" width="140" height="100" border="0" class="blue"></a></td>
</tr>
<tr>
<td valign="top"><a href="list.asp03?id=<%=Rs("bookid")%>" class="word-red13-bold"><%=Rs("bookname")%></a><br>
<%=Rs("bookcontent")%><br> <br> <span class="word-grey12"> 市場(chǎng)價(jià):<%=Rs("shichangjia")%>元<br>
會(huì)員價(jià):<%=Rs("huiyuanjia")%>元<br>
VIP價(jià):<%=Rs("vipjia")%>元</span></td>
</tr>
<tr>
<td height="30">
<div align="right"></div>
<div align="right">
<table width="90%" border="0" align="left" cellpadding="0" cellspacing="0">
<tr>
<td><div align="right"><a href="gouwu.asp?id=<%=rs("bookid")%>&action=add"><img src="images/2_01.gif" width="46" height="20" border="0"></a>
<a href="shoucang.asp?id=<%=rs("bookid")%>&action=add"><img src="images/2_03.gif" width="46" height="20" border="0"></a>
</div></td>
</tr>
</table>
</div></td>
</tr>
</table>
</td>
<% rs.movenext
j=j+1
if rs.eof then
exit do
end if
if j>=3 then exit do
loop
'rs.close
'set rs= nothing %>
<table width="100%" align="center">
<%for i=1 to rs.recordcount
if (i mod 3=1) then
response.write"<tr>"
end if
response.write"<td>"&rs("XXX")&"</td>"
if (i mod 3=0) then
response.write"</tr>"
end if
rs.movenext
next%>
</table>
代碼一目了然,重點(diǎn)是第七行----if (i mod 3=0) then
這里是排成3列的,如果你想排成更多或更少,可自行修改。
方法二:
<%set rs=server.CreateObject("adodb.recordset")
SQL = "Select * From Shop_books Order By Adddate Desc"
rs.open SQL,conn,1,1
%>
<tr>
<td>
<table width="193" border="0" cellpadding="5" cellspacing="0">
<tr>
<% dim j
j=0
do while not rs.eof %>
<td width="193">
<table width="168" border="0" cellpadding="3" cellspacing="0">
<tr>
<td width="163"><a href=list03.asp?id=<%=rs("bookid")%>><img src="<%=trim(rs("bookpic"))%>" width="140" height="100" border="0" class="blue"></a></td>
</tr>
<tr>
<td valign="top"><a href="list.asp03?id=<%=Rs("bookid")%>" class="word-red13-bold"><%=Rs("bookname")%></a><br>
<%=Rs("bookcontent")%><br> <br> <span class="word-grey12"> 市場(chǎng)價(jià):<%=Rs("shichangjia")%>元<br>
會(huì)員價(jià):<%=Rs("huiyuanjia")%>元<br>
VIP價(jià):<%=Rs("vipjia")%>元</span></td>
</tr>
<tr>
<td height="30">
<div align="right"></div>
<div align="right">
<table width="90%" border="0" align="left" cellpadding="0" cellspacing="0">
<tr>
<td><div align="right"><a href="gouwu.asp?id=<%=rs("bookid")%>&action=add"><img src="images/2_01.gif" width="46" height="20" border="0"></a>
<a href="shoucang.asp?id=<%=rs("bookid")%>&action=add"><img src="images/2_03.gif" width="46" height="20" border="0"></a>
</div></td>
</tr>
</table>
</div></td>
</tr>
</table>
</td>
<% rs.movenext
j=j+1
if rs.eof then
exit do
end if
if j>=3 then exit do
loop
'rs.close
'set rs= nothing %>
[收藏此文章]
- 1. 教你編寫安全的ASP代碼
- 2. ASP程序應(yīng)用之模板采用的簡(jiǎn)單教程
- 3. 關(guān)于ASP中大字段在Form中Post出錯(cuò)的解析
- 4. 關(guān)于在ASP程序頁(yè)面中插入excel文件的實(shí)例代碼分享
- 5. ASP程序?qū)崿F(xiàn)自動(dòng)采集程序及入庫(kù)的實(shí)例代碼分享
- 6. ASP一些錯(cuò)誤代碼的解釋說明
- 7. 關(guān)于ASP控制圖片顯示大小的實(shí)例代碼分享
- 8. ASP中類型轉(zhuǎn)換函數(shù)的介紹說明
- 9. ASP中定義數(shù)組方法分享
- 10. 關(guān)于ASP組件上傳的三種機(jī)制