protected void btnModificar_Click(object sender, EventArgs e) { lblError.Visible = lblSucess.Visible = false; lblError.Text = lblSucess.Text = String.Empty; try { if (validarVacios()) { if (validarEntero()) { if (!Page.IsValid) { return; } AccesoLogica negocio = new AccesoLogica(); int rut = Convert.ToInt32(txtDueño.Text); string patente = txtPatente.Text; string marca = txtMarca.Text; string modelo = txtModelo.Text; int annio = Convert.ToInt32(txtAño.Text); string color = txtColor.Text; int resultado = negocio.ModifcarVehiculo(patente, marca, modelo, annio, color, rut); if (resultado == 1) { btnCancelar.Text = "LIMPIAR"; btnGuardar.Enabled = false; lblSucess.Visible = true; lblError.Visible = false; lblSucess.Text = "El registro se ha modificado con éxito."; } negocio = null; } } } catch (Exception exception) { lblError.Visible = true; lblError.Text = exception.ToString(); } }