牢记这些
-前锋
我很难解决这个问题......这段代码在 ASP.NET 中是“线程安全的”吗?
public static bool IsCookieMissing()
{
foreach (string cookieKey in HttpContext.Current.Request.Cookies.AllKeys)
{
if (cookieKey.EndsWith("cookie_name"))
{
return false;
}
}
return true;
}