Example #1
0
 protected void btnEliminar_Click(object sender, EventArgs e)
 {
     try
     {
         ScriptManager.RegisterStartupScript(this, this.GetType(), "Pop", "closeModalEliminar();", true);
         GestorAlternativa gestor = new GestorAlternativa();
         gestor.eliminarAlternativaPorId();
         cargarRepeaterAlternativas();
         reestablecerPantalla();
     }
     catch (Exception ex)
     {
         mostrarError();
         litError.Text = ex.Message;
     }
 }