欢迎来到代码驿站!

ASP代码

当前位置:首页 > 软件编程 > ASP代码

asp 横排显示数据

时间:2021-03-06 10:12:20|栏目: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>

上一篇:ASP+FSO生成的网页文件默认编码格式以及转换成UTF-8编码方法

栏    目:ASP代码

下一篇:asp万用分页程序代码

本文标题:asp 横排显示数据

本文地址:http://www.codeinn.net/misctech/75396.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有