cache-control – 什么是设置no-cache =“Set-Cookie”

cache-control – 什么是设置no-cache =“Set-Cookie”,第1张

概述我正试图让我的头球更好.我在vb.net中有以下代码: With HttpContext.Current.Response .Cache.SetCacheability(HttpCacheability.Public) .Cache.SetRevalidation(HttpCacheRevalidation.AllCaches) .Cache.SetLastModified(N 我正试图让我的头球更好.我在vb.net中有以下代码:
With httpContext.Current.Response    .Cache.SetCacheability(httpCacheability.Public)   .Cache.SetRevalIDation(httpCacheRevalIDation.AllCaches)   .Cache.SetLastModifIEd(Now)   .Cache.SetExpires(DateTime.UtcNow.AddSeconds(120))   .Cache.SetMaxAge(TimeSpan.FromSeconds(120))End With

返回以下标题:

Cache-Control: public,no-cache="Set-cookie",must-revalIDate,max-age=120Content-Type: application/xml; charset=utf-8Expires: Mon,22 Aug 2016 13:54:36 GMTLast-ModifIEd: Mon,22 Aug 2016 13:52:36 GMT

但是我想弄清楚什么是设置no-cache =“Set-cookie”,我该怎样才能打开或关闭它?

解决方法 no-cache =“Set-cookie”告诉浏览器不要缓存服务器“Set-cookie”标头,而是对请求的其余部分遵循不同的规则.
这是W3C的讨论
http://www.w3.org/Protocols/HTTP/Issues/cache-private.html

In http 1.1,Roy has proposed some features for the new cache-control directive that allow servers to selectively disable caching on specific headers. This would be,for example: cache-control: no-cache=”set-cookie”

总结

以上是内存溢出为你收集整理的cache-control – 什么是设置no-cache =“Set-Cookie”全部内容,希望文章能够帮你解决cache-control – 什么是设置no-cache =“Set-Cookie”所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1128021.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存