日期:2014-05-17  浏览次数:20812 次

如何让动态内容并排显示?
我想让内容一排显示2个、3个,请问该怎么做,有什么代码可以解决的吗?

------解决方案--------------------
dim i
i=1
do while not rs.eof
response.write rs( "title ")
if i mod 3=0 then '三个显示一行
response.write( " <br> ")
end if
i=i+1
rs.movenext
loop