0
我有設置過的用戶認證數據一個cookie:對象引用錯誤
HttpContext.Current.Response.Cookies.Add(new HttpCookie(FormsAuthentication.FormsCookieName, FormsAuthentication.Encrypt(ticket)));
現在,當我嘗試讀取使用另一個類的餅乾:
HttpCookie myCookie = new HttpCookie(FormsAuthentication.FormsCookieName);
myCookie = HttpContext.Current.Request.Cookies[FormsAuthentication.FormsCookieName];
我收到一個Object reference not set to an instance of an object
錯誤。
我檢查了我的瀏覽器cookie和.ASPXAUTH
cookie與數據。
任何人都可以告訴我哪裏出錯了嗎?我試着兩個request
和response
編輯:HttpContext.Current.Request.Cookies.Get
返回相同的錯誤
EDIT2:好像HttpContext.Current
是null