产品展示分几列显示的方法技巧
Author:Website construction AddDate:2015/12/23 From:Bangnie Hits:17424
怎么使重复区域以两列(或三列,N列)的样子,一排一排,整齐的往下排!
asp 重复区域 字段重复区域显示 显示字段 重复输出字段
<table>
<tr>
<%
n=3
i=0
Do while Not rs.EOF
%>
<td> </td>
<%
i=i+1
rs.MoveNext
if (i mod n=0) And Not rs.EOF then
Response.Write " </tr> <tr> "
End if
Loop
%>
</tr>
</table>
asp 重复区域 字段重复区域显示 显示字段 重复输出字段
<table>
<tr>
<%
n=3
i=0
Do while Not rs.EOF
%>
<td> </td>
<%
i=i+1
rs.MoveNext
if (i mod n=0) And Not rs.EOF then
Response.Write " </tr> <tr> "
End if
Loop
%>
</tr>
</table>