<%@ LANGUAGE="JSCRIPT" %> <% connDB = Server.CreateObject("ADODB.Connection"); str = "Driver={Microsoft Access Driver (*.mdb)}; DBQ=" str += Server.MapPath("registration.mdb"); connDB.Open(str); sep = "','"; str = "INSERT into students (first,last,state) VALUES ('"; str += Request.Form("first") + sep + Request.Form("last"); str += sep + Request.Form("state") +"')"; rsItem = connDB.Execute(str); %> Your entry has been added. Click here to see the updated database.