Example #1
0
 protected void btnCancelarEdicion_Click(object sender, EventArgs e)
 {
     try
     {
         gestorEdicion.cancelarEdicion(gestorEdicion.edicion.idEdicion);
         cargarRepeaterEdiciones();
         ScriptManager.RegisterStartupScript(this, this.GetType(), "cancelarEdicion", "closeModal('modalCancelarEdicion');", true);
     }
     catch (Exception ex) { GestorError.mostrarPanelFracaso(ex.Message); }
 }