asp 横排显示数据
更新时间:2009年07月09日 00:22:30 作者:
asp 横排显示数据的方法,实际上就是控制tr td来实现多行多列的实现方法,大家可以先用静态的表格然后循环输出就可以了。
复制代码 代码如下:
<%
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 VBS xmlhttp adodbstream下载和保存图片的代码
用ASP VBS xmlhttp adodbstream下载和保存图片的代码...2007-03-03服务器XMLHTTP(Server XMLHTTP in ASP)基础知识
几年很流行 Ajax,而 Ajax 的本质就是 XMLHttpRequest,是客户端 XMLHttpRequest 对象的使用。2010-08-08
最新评论