主题:  请教怎样分栏显示数据库的数据啊!

sht

职务:普通成员
等级:1
金币:0.0
发贴:7
#12004/4/14 14:44:47
就像这个网站 http://www.zikaoshop.com/
新品速递 里分两栏显示,语句怎么写啊???
求教了!!!



sht

职务:普通成员
等级:1
金币:0.0
发贴:7
#22004/4/14 14:46:38
求教了,大家帮一下忙吧?看一下



rainbowqqz

职务:普通成员
等级:1
金币:0.0
发贴:30
#32004/4/15 10:10:06
if not rs.eof then                        
h=1        
tdi=0
do while not rs.eof and h<=20
if tdi mod 2 =0 then
response.write"<tr height=27><td width=60></td>"
end if

response.write "<td><a href=www.xxx.xxx?name="&rs("name")&"'>"&rs("name")&"</a></td><td width=30></td>"
tdi=tdi+1

if 3=tdi+1 then
response.write"</tr>"
tdi=0
end if
rs.movenext
h=h+1
loop
rs.close
end if