codice:
<% if not rs.eof then %>
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="2">
  <tr>
  <% do until rs.eof %>
    <td width="50%" valign="top">
    <%=rs("campo_tabella")%>
    </td>
  <%
     rs.moveNext
     loop
  <%
  </tr>
</table>
<% end if %>