Hey all,
i have an assignment at tafe where we have to create a booking system for an online tour company. I'm having major problems with adding new customers to the database. I'm getting an error that says :
Error Type:
Microsoft JET Database Engine (0x80040E09)
Cannot update. Database or object is read-only.
/assignment/pages/confRego.asp, line 34
Line 34 is where my rs.Addnew is
I'm not sure why this is happening and my teacher is on holidays!!
here's the jist of what i've got in my code
rs.MoveLast
rs.AddNew
rs("fieldname") = Request.Form("fieldname")
rs.Update
rs.Close
then i set the rs to nothing and close and set the connection to nothing.
Am i missing something? My sql is just "SELECT * FROM customers"
I'm using an Access database too. If anyone can help i would much appreciated 
|