我的解决方案资源管理器(如果有帮助): http://i.stack.imgur.com/BdhDz.png
当我点击帐户按钮(href到account.aspx)时,它会将我重定向到login.aspx,因为未经授权。
在我的login.aspx.cs上(点击登录后),我有
Session["hi"] = "hello";
HttpCookie cookie = new HttpCookie("username");
cookie.Value = UName.Text;
Response.Cookies.Add(cookie);
System.Web.Security.FormsAuthentication.RedirectFromLoginPage(UName.Text, false);
在帐号.aspx.cs上我有
if (Session["hi"] != null)
{
Literal1.Text = Session["hi"].ToString();
Literal1.Text += "<br><br><br>";
}
为什么没有显示任何内容?我尝试了各种方式来显示这个会话,没有工作, 由于某种原因,Session [“hi”]为空。
答案 0 :(得分:0)
根据您的上次评论,您需要将AuthenticationSection.Mode Property设置为mode="Forms"
。
默认情况下,它是窗口模式。
<authentication mode="Forms">
<forms loginUrl="~/Login.aspx"
timeout="2880"
cookieless="UseCookies" />
</authentication>
一旦为经过身份验证的用户请求了一个页面,您需要从cookie中检索身份验证票证,并创建一个Principal对象。
void Application_AuthenticateRequest(object sender, EventArgs e)
{
HttpCookie decryptedCookie =
Context.Request.Cookies[FormsAuthentication.FormsCookieName];
FormsAuthenticationTicket ticket =
FormsAuthentication.Decrypt(decryptedCookie.Value);
var identity = new GenericIdentity(ticket.Name);
var principal = new GenericPrincipal(identity, null);
HttpContext.Current.User = principal;
Thread.CurrentPrincipal =HttpContext.Current.User;
}
if (User.Identity.IsAuthenticated)
{
}