Problema e script:
Microsoft OLE DB Provider for ODBC Drivers error '80040e21'
Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done.
/postcard/step3.asp, line 79
Set conn = Server.CreateObject("ADODB.Connection")
'la variabile db deve essere posizionata nella attuale locazione del database
db = Server.MapPath("../../superedodb/postcards2.mdb")
conn.Open "DRIVER={Microsoft Access Driver (*.mdb)};DBQ=" & db &";"
'Save it to database
Dim oRS
Set oRS = Server.CreateObject("ADODB.Recordset")
oRS.Open "createdpostcards" ,Conn,3,3
oRS.AddNew
oRS("cat") = scat
oRS("img") = simg
oRS("nameto") = sNameTo
oRS("namefrom") = sNameFrom
oRS("emailto") = sEmailTo
oRS("emailfrom") = sEmailFrom
oRS("notifysenderpickup") = sNotifySenderPickup
oRS("Musica") = sMusica
oRS("Francobollo") = sFrancobollo
oRS("greeting") = sGreeting
oRS("stext") = sText
oRS("bbgcolor") = sBGColor
oRS("textcolor") = sTextcolor
' New addition of encryption for password
ora=Time()
ora = Replace(ora,".","")
sOtherId = Password_GenPass( 9, "" )
LINEA 79 oRS("otherid") = sOtherId + ora
oRS.Update
qualcuno sà dirmi quale potrebbe essere il problema?
ciao e grazie

Rispondi quotando