protected void btnGuardarInfoUsuario_Click(object sender, EventArgs e) { int n = 0; int UsuarioID = Int32.Parse(Session["UsuarioID"].ToString()); try { string CorreoElectronico = txtCorreoElectronico.Text; string PrimerNombre = txtPrimerNombre.Text; string SegundoNombre = txtSegundoNombre.Text; string PrimerApellido = txtPrimerApellido.Text; string SegundoApellido = txtSegundoApellido.Text; string NombreEntidad = txtNombreEntidad.Text; string NombreProyecto = txtNombreProyecto.Text; string CargoFuncionario = txtCargoFuncionario.Text; using (EncuestaServiceClient client = new EncuestaServiceClient()) { n = client.ActualizarUsuarioEncuesta(UsuarioID, PrimerNombre, SegundoNombre, PrimerApellido, SegundoApellido, NombreEntidad, NombreProyecto, CargoFuncionario); Session["UsuarioID"] = UsuarioID.ToString(); Response.Redirect("~/Pages/MisEncuestas.aspx"); } } catch (Exception ex) { } }