private void buscarXnombreIPS()
 {
     if (!this.txtRazonSocial.Text.Equals(string.Empty))
     {
         Consulta c = new Consulta();
         try
         {
             DropDownListASP.llenarDropDownList(c.consultarRazonSocialIpsXNombre(this.txtRazonSocial.Text), "cod_ips", "razon_social", ref this.ddl_ips);
             DropDownListASP.AddItemToDropDownList(ref this.ddl_ips, "Seleccione>>", "-1", true);
             DropDownListASP.selectIndexByValue(ref this.ddl_ips, "-1");
         }
         catch(ArgumentNullException ex)
         {
             this.RadWindowManager1.RadAlert("Ocurrio un error al cargar las IPS", 400, 200,
                 Utilities.windowTitle(TypeMessage.error_message),null, Utilities.pathImageMessage(TypeMessage.error_message));
             Logger.generarLogError(ex.Message, new System.Diagnostics.StackFrame(true), ex);
         }
         catch(ArgumentException ex)
         {
             this.RadWindowManager1.RadAlert("Ocurrio un error al cargar las IPS", 400, 200,
                 Utilities.windowTitle(TypeMessage.error_message),null, Utilities.pathImageMessage(TypeMessage.error_message));
             Logger.generarLogError(ex.Message, new System.Diagnostics.StackFrame(true), ex);
         }
         catch(Exception ex)
         {
             this.RadWindowManager1.RadAlert("Ocurrio un error al cargar las IPS", 400, 200,
                 Utilities.windowTitle(TypeMessage.error_message),null, Utilities.pathImageMessage(TypeMessage.error_message));
             Logger.generarLogError(ex.Message, new System.Diagnostics.StackFrame(true), ex);
         }
         this.txtRazonSocial.Text = string.Empty;
     }
     else
     {
         this.RadWindowManager1.RadAlert("Favor ingrese un nombre de IPS en el campo de búsqueda por razón social", 400, 200,
             Utilities.windowTitle(TypeMessage.information_message),null, Utilities.pathImageMessage(TypeMessage.information_message));
     }
 }