Fino a metà ci arrivo... ma poi non so come fare...

codice:
<%
response.write("<table border=1 width=1000 cellspacing=1>")
do while not rsCat.eof
   response.write("<tr>")
   response.write("<td width=200>" & rsCat("TESTO") &"</td>")
   response.write("</tr>")
rsCat.movenext
loop
response.write("</table>")
%>