protected void btnSalvaEntra_Click(object sender, EventArgs e) { UsuariosBD bd = new UsuariosBD(); Usuarios usuario = bd.Select(Convert.ToInt32(Session["ID"])); usuario.Senha = txtSenhav.Text; if (txtSenhav.Text == txtConfSenha.Text) { txtConfSenha.Text = usuario.Senha; } usuario.PriAcesso = "0"; //bd.Update(usuario); if (bd.Update(usuario)) { if (usuario.Tipo == 0) { Response.Redirect("Indeex.aspx"); } else { Response.Redirect("IndexUser.aspx"); } } //Login passando = new Login(); //try //{ // passando.senha = senhav; //} //finally //{ // passando.Dispose(); //} }