當(dāng)前位置: 首頁IT技術(shù) → 按列顯示數(shù)據(jù)表中字段的值的簡單介紹說明

按列顯示數(shù)據(jù)表中字段的值的簡單介紹說明

更多

本文主要跟大家介紹說明的是關(guān)于按列顯示數(shù)據(jù)表中字段的值。

在織夢論壇看到有很多會員提到如何通過循環(huán)do while調(diào)用數(shù)據(jù)表字段的問題。網(wǎng)上也見過這種方法很多,但感覺都挺復(fù)雜的,有的都動用Mod運算符進(jìn)行取余運算了。包括我自己,在實際工作中實現(xiàn)效果也有點過于復(fù)雜了。試著改用一下分列顯示的效果(分列顯示效果見下圖),感覺代碼簡練了好多,而且易于初學(xué)asp的用戶修改。

代碼如下:

<%
'綁定數(shù)據(jù)庫Conn,略......

Set rs = Conn.Execute("select top 7 ID from news order by ID asc")
if not(rs.eof and rs.bof) then
response.write "<table width=""80%"" border=""1"">" & Chr(10)
do while not rs.eof
response.write " <tr width=""20%"">" & Chr(10)
for i=1 to 4
response.write " <td>"
if not rs.eof then
response.write rs("ID")
rs.movenext
else
response.write "."
end if
response.write "</td>" & Chr(10)
next
response.write " </tr>" & Chr(10)
loop
response.write "</table>"
else
response.write "未有記錄......"
end if
rs.close : set rs = nothing
%>

熱門評論
最新評論
發(fā)表評論 查看所有評論(0)
昵稱:
表情: 高興 可 汗 我不要 害羞 好 下下下 送花 屎 親親
字?jǐn)?shù): 0/500 (您的評論需要經(jīng)過審核才能顯示)