codice:
<%
sql="select top 6 * from ..."
rs.open sql,conn,1,1

if not rs.eof then
%>
<table>
<%
i=1
while not rs.eof
%>
<%if i=1 then %>
<tr>
<%end if%>
<td><%= rs(0) %></td>
<%
i=i+1
if i=3 then
%>
</tr>
<%
i=1
end if

rs.movenext
wend
if i=2 then response.write "</tr>"
%>
</table>
<%
end if
%>