1. 点击按钮 后 ,到后端清除用户的登录休息,包括后端缓存的和前端 cookie
2. 以上操作完成,跳转到 登录页面
最简单的!
//清除session Session.Clear(); Session.Abandon(); //清除cookie票据 System.Web.Security.FormsAuthentication.SignOut(); 跳到登陆页面 Response.Redirect("~/Default.aspx", true);
哈哈,楼上的还是复杂了。
他可能想要这样:
注销直接链接到登录页面,登录页面:Session["user"]=null;
清空Session值,然后页面跳转
清除session和cookie票据 然后进行跳转到你的登录界面