--把cookies清空咯`
--如果登录合法..保存用户的信息用1.System.Web.Security.FormsAuthentication.SetAuthCookies(用户名,true/false); Response.Write(登录成功转向的页面);
//true为保存记录登录后 关掉窗口 下次不用登录 直接进页面
.//false为保存记录 关掉窗口 下次仍要记录. 才能进再进页面
2.System.Web.Security.FormsAuthentication.RedirectFormLoginPage(用户名,true/false);
//作用根上面一样..
--如果登录进入的页面想去掉历史记录就用System.Web.Security.FormsAuthentication.SignOut();//当然与上项为true时相互运用.