codice:
if not (MyRs.BOF and MyRs.EOF) then%>
  <table border="1" width="100%" id="table1"><% 
    while not MyRs.EOF%>
      <TR>
        <td><%= MyRs("SQUADRA ")%></td>
        <td><%= MyRs("PUNTI")%></td>
        <td><%= MyRs("PARTITE")%></td>
      </TR><%
      MyRs.movenext
    wend%>
  </table><%
end if