如何用ASP实现网页分成两栏显示数据库中内容
我想实现一个,在页面里分成左右两栏显示数据库中的内容
2006-07-24 20:19
<tr>
<%
n=rs.recordcount
do while not rs.eof then%>
<td width="想要的宽度"><%=rs("title")%></td><%
if n mod 2=0 then
response.write("</tr><tr>")
end if
if not rs.eof then
rs.movenext
end if
loop
%>
</tr>

2006-07-25 11:20
2006-07-25 13:04
2006-07-25 13:38
同意二楼

2006-07-25 14:21
2006-07-26 08:30
2006-07-26 08:35