codice:
<%
if not rs.eof then
cont = 1
%>
<table>
  <tr>
<%
  do until rs.eof
%>
    <td><%=rs("campoImmagine")%></td>
<%
    if cont = 3 then
      cont = 1
      response.write "  </tr>"
      response.write "  <tr>"
    else
      cont = cont + 1
    end if
    rs.moveNext
  loop
end if
%>
  </tr>
</table>
<%
end if
%>