% Dim Conexion Dim ConexionPersonal Set Conexion = Server.CreateObject("ADODB.Connection") Conexion.Open("DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath("Ateneo.mdb")) SQL = "Select * From Merito Order By Apellidos" set RS = Server.CreateObject("ADODB.RecordSet") RS.ActiveConnection = Conexion RS.CursorType = 3 RS.Open SQL SQLPERSONAL = "Select * From Socios Order By Apellidos" set RSPERSONAL = Server.CreateObject("ADODB.RecordSet") RSPERSONAL.ActiveConnection = Conexion RSPERSONAL.CursorType = 3 RSPERSONAL.Open SQLPERSONAL %>