我需要检测请求 cookie - 值是否与响应 cookie - 值不同。
它并不像:
if(cookiesArePresent)
{
bool isDifferent = HttpContext.Current.Response.Cookies[".ASPXANONYMOUS"].value == HttpContext.Current.Response.Cookies[".ASPXANONYMOUS"].value;
}
但是我读到更改 Response.Cookies 会更改 Request.Cookies。这意味着如果 HttpContext.Current.Response.Cookies[".ASPXANONYMOUS"] 被更改,它们总是相同的。有没有简单的方法解决这个问题?
http://chance.lindseydev.com/2009/04/aspnet-httprequestcookies-and.html