private void cargarIPS()
 {
     Consulta c = new Consulta();
     try
     {
         DataTable myDataTable = c.consultarIpsXnombre(this.txtBuscarIPS.Text.Trim());
         myDataTable.Merge(c.consultarIpsXnit(this.txtBuscarIPS.Text.Trim()));
         DropDownListASP.llenarDropDownList(myDataTable, "value", "text", ref this.ddlIps);
         DropDownListASP.AddItemToDropDownList(ref this.ddlIps, "SELECCIONE>>", "-1", true);
         this.ddlIps.Focus();
     }
     catch (Exception ex)
     {
         Logger.generarLogError(ex.Message, new StackFrame(true), ex);
         this.myRadWindowManager.RadAlert(Utilities.errorMessage(), 400, 200, Utilities.windowTitle(TypeMessage.error_message), null,
             Utilities.pathImageMessage(TypeMessage.error_message));
     }
 }