protected void btnLogin_Click(object sender, EventArgs e) { try { UsuarioDAL d = new UsuarioDAL(); ControleCriptografia cc = new ControleCriptografia(); Usuario u = d.Authenticate(txtUsuario.Text, cc.EncriptarParaSHA1(txtSenha.Text)); if (u != null) { FormsAuthentication.SetAuthCookie(u.Login, chkManterConectado.Checked); Session.Add("UsuarioLogado", u); Response.Redirect("/Admin/Default.aspx"); } else { lblMensagem.Text = "Acesso negado."; } } catch (Exception ex) { lblMensagem.Text = ex.Message; } }