如何用ASP实现网页分成两栏显示数据库中内容
我想实现一个,在页面里分成左右两栏显示数据库中的内容<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>