<%@ LANGUAGE="JScript" %> <% var dbConnection = Server.CreateObject("ADODB.Connection"); dbConnection.Open("Driver={Microsoft Access Driver (*.mdb)}; DBQ=" + Server.MapPath('registration.mdb')); sep = "', '" ; str = "INSERT INTO students (first, last, state) VALUES (' " str += Request.Form("first") + sep + Request.Form("last") + sep + Request.Form("state") + "')"; dbConnection.Execute(str); dbConnection.Close(); %> Click here to see a listing of all the records