... roba da crisi isterica... nella tabella esercizio del dbase access ho due record con id=1 e id=2 quando li richiamo mi restituisce soltanto il record con id=1... ma che vorrdì????
codice:
<%
strSQL = "select * From esercizio"
Set rs = Server.CreateObject("ADODB.Recordset")
Set rs = Cn.Execute(strSQL)
While Not rs.eof
%>
<%=rs("mese")%>
<%=rs("avanzamento1")%>
<%=rs("avanzamento4")%>
<%=rs("avanzamento5")%>
<%=rs("avanzamento6")%>
<%=rs("avanzamento7")%>
<%=rs("totale3")%>
<%
rs.MoveNext
wend
Cn.Close
Set Cn = Nothing
%>