After some searching, I found this
http://www.stardeveloper.com/article...0040101&page=1
I made no changes to any of the code, and added my existing html into each page.
I can add records manually into the table via MS access, and they do show up on my "showall.asp" page.
However, I cannot enter any records through my form.
I get this message:
Microsoft JET Database Engine error '80004005'
Operation must use an updateable query.
/telco/form_ac.asp, line 166
This is line 166
Code:
' Creating Connection Object and opening the database
Set con = Server.CreateObject("ADODB.Connection")
con.Open data_source
line 166 ---> con.Execute sql_insert
' Done. Close the connection
con.Close
Set con = Nothing
Response.Write "All records were successfully entered into the database."
Bookmarks