Microsoft JET Database Engine error '80040e09'
Cannot update. Database or object is read-only.
/addnew.asp, line 9
No sure why I'm receiving this error. I can write the fields to a page but not update.
Here is my code, line 9 is objrs.addnew
*********************8
Dim objrs, x, strcriteria, strconnect
strConnect = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=e:\websites\liquiflo\liquiflo.mdb;"
Set objrs = Server.CreateObject ("ADODB.Recordset"
objrs.open "Info", strConnect, 2, 2
objrs.MoveLast
objrs.AddNew
Objrs("Name"=request("Name"
*************************
Cannot update. Database or object is read-only.
/addnew.asp, line 9
No sure why I'm receiving this error. I can write the fields to a page but not update.
Here is my code, line 9 is objrs.addnew
*********************8
Dim objrs, x, strcriteria, strconnect
strConnect = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=e:\websites\liquiflo\liquiflo.mdb;"
Set objrs = Server.CreateObject ("ADODB.Recordset"
objrs.open "Info", strConnect, 2, 2
objrs.MoveLast
objrs.AddNew
Objrs("Name"=request("Name"
*************************