在asp里让一个一个表格(table)按顺序一行三个 第四个转下行 循环...
发布网友
发布时间:2024-10-06 16:23
我来回答
共2个回答
热心网友
时间:2024-10-07 00:49
简单的给你个思路,实现方法就是这样的,你根据你的具体情况去改改就行了
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<%
Dim TopicID,i,n
TopicID=0
For i=1 to Int(nPerPage/3)
%>
<tr>
<%
Set Rs=conn.Execute("SELECT * FROM WindStep_Topic Where TopicID>"&TopicID&" ORDER BY TopicID ASC")
Do While Not Rs.Eof
TopicID=Rs("TopicID")
%>
<td height=25 style="text-indent:10px">◆ "><a href="act.asp?sort=del&id=<%= rs("TopicID") %>">删除产品</a></td>
<%
n=n+1
If n>=3 Then Exit Do
Rs.Movenext
Loop
n=0
Set Rs=Nothing
%>
</tr>
<%Next%>
</table>
热心网友
时间:2024-10-07 00:47
<community:ContentList id="ContentList" RepeatLayout="table" RepeatColumns="3" CssClass="WebBox_ListItem" Runat="Server">