Ciao,
<%
'rilevo il path del database
dbPath = Server.MapPath("../mdb-database/arca.mdb")

'connessione al database
Set cn = Server.CreateObject("ADODB.Connection")
cn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Persist Security Info=False;Data Source="&dbpath

'eseguo la SQL per contare i record
sql = "SELECT COUNT(*) AS RECORD_COUNT FROM scheda WHERE FORMATO=DVD"
Set rs = Server.CreateObject("ADODB.Recordset")

'visualizzo il numero di record della tabella
Response.Write("La tabella contiene "&rs("RECORD_COUNT")&" record.")

'chiudo recordset e connessione e libero le risorse
rs.Close
Set rs = Nothing
cn.Close
Set cn = Nothing
%>
Devo conteggiare i records ma con questo codice mi da l'errore

ADODB.Recordset error '800a0cc1'

Item cannot be found in the collection corresponding to the requested name or ordinal.

/arca/lista.asp, line 191

Come mai ?

Andrea