在客户端缓存 asp.net 页面响应
我正在尝试通过添加以下缓存标头在客户端浏览器上缓存 asp.net 页面响应
Response.Cache.SetExpires(DateTime.Now.AddMinutes(10));
Response.Cache.SetCacheability(System.Web.HttpCacheability.Public);
使用上述标头,它不起作用。我可以知道还需要添加什么吗?
我正在客户端使用 jquery 来获取页面响应
I am trying to cache asp.net page response on client Browser by adding following cache headers
Response.Cache.SetExpires(DateTime.Now.AddMinutes(10));
Response.Cache.SetCacheability(System.Web.HttpCacheability.Public);
With the above headers it is not working.. May I know what else to be added?
I am using jquery from client side to get the page response
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您尝试以声明方式设置缓存会发生什么?
What happens if you try to set the cache declaratively?