%@ LANGUAGE="VBScript" %> <% 'Open connection ConnectString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.MapPath("fpdb/admin.mdb") Set conn = Server.CreateObject("ADODB.Connection") conn.open ConnectString 'Set User_name User_name = "Screwyou" SQLStmt = "SELECT * FROM Results WHERE User_name='" & User_name & "'; " Set RS = Server.CreateObject("ADODB.Recordset") RS.open SQLStmt, conn,3,3 %>