0
對MVC 3 IM一種新的,我只是發現這個實例項目中的MVC 2窗體身份驗證Cookie MVC 3和MVC 2
FormsAuthenticationTicket authTicket = new FormsAuthenticationTicket(1,Username,DateTime.Now,DateTime.Now.AddMinutes(10), RememberMe, Username);
string encTicket = FormsAuthentication.Encrypt(authTicket);
this.Response.Cookies.Add(new HttpCookie(FormsAuthentication.FormsCookieName, encTicket));
,這對MVC 3示例項目
FormsAuthentication.SetAuthCookie(model.UserName, model.RememberMe);
我的問題是這是否具有相同的效果?我如何指定在mvc 3上的cookie的實況?
THX提前
thx很多@Daring – 2012-01-30 17:00:42