首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > ASP >

请教怎么做到这种重复

2012-02-08 
请问如何做到这种重复?我只会用DREAMWEAVER做asp,我已经建立了记录集recordset,我只会做这种重复表格:1234

请问如何做到这种重复?
我只会用DREAMWEAVER做asp,
我已经建立了记录集recordset,
我只会做这种重复
表格:
1
2
3
4
5
6

请问下面这种重复怎么做?
123
456

就是先重复三个单元格记录,然后再重复行。

最好能提供代码谢谢了!

[解决办法]
<table width=200 border=1>
<%
if not rs.eof then
do while net rs .eof
%>
<tr> <td> <%=rs(1)%> </td>
<%
rs.movenext
i=i+1
if i mod 3 = 0 then
response.write " </tr> "
end if
loop
%>
</tr> </table>

热点排行