您现在的位置: 万盛学电脑网 >> 程序编程 >> 网络编程 >> asp编程 >> 正文

asp横向显示数据代码

作者:佚名    责任编辑:admin    更新时间:2022-06-22

<% 
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>