<%'Creates connection to database strDSN = "restore" 'sets the Data Source Name used in the ODBC control panel. strUsername = "restore" 'sets the username used to access the database, as defined in the ODBC control panel. strPassword = "sibannac" 'sets the password used to access the database, as defined in the ODBC control panel. set objConn = server.CreateObject("adodb.connection") set objRS = server.CreateObject("adodb.recordset") objConn.Open "DSN=" & strDSN,strUsername,strPassword %>