加入收藏 | 设为首页 | 会员中心 | 我要投稿 银川站长网 (https://www.0951zz.com/)- 云通信、基础存储、云上网络、机器学习、视觉智能!
当前位置: 首页 > 站长学院 > Asp教程 > 正文

利用ASP展示数据的横向方式步骤指南

发布时间:2023-10-11 13:14:59 所属栏目:Asp教程 来源:
导读:利用ASP展示数据的横向方式步骤指南:<% sql="select * from serr where order by id asc"set rs=server.createobject("adodb.recordset")rs.open sql,conn,1,1%><style type="text/css"><!--body,td,th {font-size:

利用ASP展示数据的横向方式步骤指南:

<% 

sql="select * from serr where order by id asc"

set rs=server.createobject("adodb.recordset")

rs.open sql,conn,1,1

%><style type="text/css">

<!--

body,td,th {

font-size: 12px;

}

-->

</style> 

<table width=""100%"" align=’center’> 

<% 

for i=1 to rs.recordCount ’变量i从1循环到数据中的全部记录数 

if (i mod 4 =1) then ’每个tr显示4个记录,可根据需要自行修改 

response.write "<tr>" 

end if 

response.write "<td width=200>"&rs("title")&"<br>"&rs("con")&"<br>"&rs("www")&"<br>"&rs("keyword")&"</td>"

if (i mod 4 = 0) then 

response.write "</tr>" 

end if 

rs.movenext 

next 

rs.close 

%> 

</table>

(编辑:银川站长网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章