I have the following code,<%@LANGUAGE="VBSCRIPT"; CODEPAGE="1252"%><%Option Explicit%><% DIM TITLE,AUTHOR,COAUTHOR,UNIVERSITY,AREA,ABSTRACT,ADD,CON TITLE = Request.Form("title") AUTHOR = Request.Form("author") COAUTHOR = Request.Form("coauthor") UNIVERSITY = Request.Form("uni") AREA = Request.Form("area") ABSTRACT = Request.Form("abstract") SET CON = Server.CreateObject("ADODB.Connection") CON.Provider = "Microsoft.Jet.OLEDB.4.0" CON.Open(Server.MapPath("AbstractDB.mdb")) ADD = "INSERT INTO Abstract(Title,Author,CoAuthor,University,Area,Abstract) VALUES('"&TITLE&"','"&AUTHOR&"','"&COAUTHOR&"','"&UNIVERSITY&"','"&AREA&"','"&ABSTRACT&"')" CON.Execute(ADD) CON.CLOSE%>Why is it that I get the following error message? quote:
Error Type:Microsoft JET Database Engine (0x80004005)Operation must use an updateable query./Test/Submit.asp, line 122