示例#1
0
 protected void btnSiguienteEdicion_Click(object sender, EventArgs e)
 {
     try
     {
         limpiarPaneles();
         gestorEdicion.cargarDatos(txtNombreEdicion.Value, ddlTamañoCancha.SelectedValue, ddlTipoSuperficie.SelectedValue, txtPuntosPorGanar.Value, txtPuntosPorEmpatar.Value, txtPuntosPorPerder.Value, ddlGenero.SelectedValue);
         gestorEdicion.registrarEdicion(Sesion.getTorneo().idTorneo);
         ScriptManager.RegisterStartupScript(this, this.GetType(), "Pop", "closeModal('modalEdicion');", true);
         cargarRepeaterEdiciones();
     }
     catch (Exception ex) { GestorError.mostrarPanelFracaso(ex.Message); }
 }