在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
方法一,创建身份票据写cookie
//创建身份验证票
方法二,直接使用系统FormsAuthentication类自动创建身份票据写cookie
FormsAuthenticationTicket authTicket = new FormsAuthenticationTicket(1, "userInfo.UserName", DateTime.Now, DateTime.Now.AddMinutes(20), false, "roles"); //创建身份验证票的加密字符串 string encryptedTicket = FormsAuthentication.Encrypt(authTicket); //将加密字符串存储在 HttpCookie 对象中 HttpCookie authCookie = new HttpCookie(FormsAuthentication.FormsCookieName, encryptedTicket); //将此 cookie 添加到返回给用户浏览器的 cookie 集合中 Response.Cookies.Add(authCookie); //将用户重定向到默认页 Response.Redirect("~/Default.aspx");
FormsAuthentication.RedirectFromLoginPage(username, true);
方法三,使用登陆控件asp:Login不用写代码。
//按你设定的名字写入cookie. |
请发表评论