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