写入Cookie
//第一次登录的时候,点击登录按钮事件下写
HttpCookie cookie = new HttpCookie("userName",user.UserName);
cookie.Expires = DateTime.Today.AddDays(300); //设置过期时间,
Response.AppendCookie(cookie);
Response.Redirect("index.aspx");
//在你的目标页的Load事件下写
if (!IsPostBack)//判断是否回传
{
if (Request.Browser.Cookies == true)
{
if (Request.Cookies["userName"] == null)
{
Response.Redirect("login.aspx");//跳转到登录页面
}
}
}
如果没有效果请设置IE
在IE里按菜单“工具->Internet选项”,弹出“Internet选项”设置窗体,选择“隐私”页,点“高级”按钮,弹出“高级隐私策略设置”窗体,把“覆盖自动Cookie处理”前的钩选上,第一方、第三方都选择“接受”,把“总是允许会话Cookie”钩上即可