<%Dim oConn 'ADO connection Dim sConnString 'String path to Access database (*.mdb) file Dim rConn 'ADO recordset connection Set oConn = Server.CreateObject("ADODB.Connection") 'Just change the path name and the name of the database. sConnString = "DRIVER={Microsoft Access Driver (*.mdb)};" & "DBQ=" & Server.MapPath("db/test.mdb") & ";" %>