provo a fare un insert in una tabella access ma quando la eseguo non inserisce3 nulla pur non dando errore....il codice per l'insert e questo
StrCn = StrCn & "driver={Microsoft Access Driver (*.mdb)};dbq="
StrCn = StrCn & Server.MapPath("prova.mdb")
Set Cn = Server.CreateObject("ADODB.Connection")
Cn.Open StrCn
Set Rs = Server.CreateObject("ADODB.Recordset")
Rs.Open "prova", Cn, 3, 3
Rs.AddNew
Rs("nome") = nome
Rs("cognome") = cognome
Rs.Update
response.write "scrittura effettuata"
Rs.Close
Set Rs = Nothing