當(dāng)前位置:首頁文章首頁 IT學(xué)院 IT技術(shù)

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

作者:  來源:  發(fā)布時(shí)間:2011-7-9 11:20:06  點(diǎn)擊:

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

在織夢論壇看到有很多會員提到如何通過循環(huán)do while調(diào)用數(shù)據(jù)表字段的問題。網(wǎng)上也見過這種方法很多,但感覺都挺復(fù)雜的,有的都動用Mod運(yùn)算符進(jìn)行取余運(yùn)算了。包括我自己,在實(shí)際工作中實(shí)現(xiàn)效果也有點(diǎ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
%>

相關(guān)軟件

相關(guān)文章

文章評論

軟件按字母排列: A B C D E F G H I J K L M N O P Q R S T U V W X Y Z