首页 > 编程 > ASP > 正文

数据库中的记录输出来,每行5个

2024-05-04 11:05:51
字体:
来源:转载
供稿:网友
经常在论坛上看到有人问“将数据库中的记录输出来,每行5个”这种输出的方法
这里有一个简单的代码,改一下就成了自己想要的代码了
<table border=1 width="200">
<%
col=5 '表示列数
i=1
Do While i<=100
 If i Mod col=1 Then
  response.write "<tr>"
 End If
 response.write "<td align=center>"&i&"</td>"
 If i Mod col=0 Then
  response.write "</tr>"
 End If 
 i=i+1
loop
%>
</table>
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表