网络编程
位置:首页>> 网络编程>> Asp编程>> asp 横排显示数据

asp 横排显示数据

 来源:asp之家 发布时间:2011-03-10 10:50:00 

标签: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> 



 

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com