Пример #1
0
 private void cargarSedeIPS()
 {
     Consulta c = new Consulta();
     try
     {
         DropDownListASP.llenarDropDownList(c.consultarSedesIPSxCodIps(this.ddlIps.SelectedValue), "value", "text", ref this.ddlSedeIps);
         DropDownListASP.AddItemToDropDownList(ref this.ddlSedeIps, "SELECCIONE>>", "-1", true);
         this.ddlSedeIps.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));
     }
 }