protected void btnAtualizar_Click(object sender, EventArgs e) { BLLPessoa bllPessoa = new BLLPessoa(); BEPessoa pessoa = new BEPessoa(); pessoa.str_nome = txtNome.Text; pessoa.str_sobrenome = txtSob.Text; pessoa.str_telefone = txtTel.Text; pessoa.str_email = txtEmail.Text; pessoa.str_endereco = txtEnder.Text; pessoa.int_idPessoa = int.Parse(hdIdPessoa.Value); bllPessoa.AtualizarPessoa(pessoa); Response.Redirect("MantPessoas.aspx"); }