ASP中多列顯示資訊

來源:互聯網
上載者:User

要想顯示美觀可以自己設定樣式
<%
dim maxCount '希望顯示的資訊數
maxCount=10
dim lineCount '希望一行顯示的資訊數
lineCount=4
'判斷資料庫中現有資訊的條數
sql="select * from News where BigClassName='公司動態'"
set rs=server.CreateObject("ADODB.recordset")
rs.open sql,conn,1,1
dim rc
rc=rs.Recordcount

response.Write("<table width='1000' height='500' border='0'>")

'判斷資料庫中的資料是否比maxCount少,少了就顯示在一行中
if rc <= lineCount then
response.Write("<tr>")
do while not rs.eof
response.Write("<td>"&rs("Title")&"</td>")
rs.movenext
loop
response.Write("</tr>")
rs.close
set rs=nothing

'資料庫中的資料大於maxCount
else
dim fuzhu
fuzhu=0
rs.close
set rs=nothing
sql1="select top "& maxCount &" * from News where BigClassName='公司動態'"
set rs1=server.CreateObject("ADODB.recordset")
rs1.open sql1,conn,1,1

response.Write("<tr>")
do while not rs1.eof
if fuzhu mod lineCount=0  then
response.Write("</tr><tr>")
end if
response.Write("<td>"&rs1("Title")&"</td>")
fuzhu=fuzhu+1
rs1.movenext

loop
rs1.close
set rs1=nothing
response.Write("</tr>")

end if

response.Write("</table>")
%>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.