#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