protected void btnEditarInstitucion_Click(object sender, EventArgs e) { String textoValidacion = validarInstitucion(true); if (textoValidacion.Equals("")) { INSTITUCION institucion = new INSTITUCION(); institucion.refreshInstitution(Convert.ToInt32(lblInstitucionId.Text), txtNombreInstitucion.Text); cargarInstituciones(); lblSucess.Text = "Se edito Correctamente la Notificacion"; pnlSucess.Visible = true; } else { lblError.Text = textoValidacion; pnlError.Visible = true; } }