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.recor

作者: 来源: 时间: 17-11-23 15:55:19


代码如下:
<%
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>
11
22
33
隐藏区块

会员注册

本功能为预留功能,暂不支持注册 ^_^

Login

社交帐号登陆

使用以下任意帐号可登陆本站

Close section
Close

联系我们

关于5UCMS 您有任何需求 均可以留言给我们