Dovrei aggiungere uan riga a questa tabella che segua l'incolonnamento delle colonne non capisco come fare...

<table>
<tr>
<%
indice=1
Set rs1 = Server.CreateObject("ADODB.recordset")
SQL="SELECT da from mia_tab WHERE id="&id&" group by da"
rs1.open SQL, conn
indice=1
DO UNTIL RS1.EOF
if indice="1" then%>
</tr><tr>
<%indice=1
end if%>
<td align="center" ><%=rs1("da")%></font></td>
<%
indice=indice+1
%>
<%
RS1.MOVENEXT
LOOP
%>
</tr>
</table>