ASP.NET页面缓存与master有关系吗?
如果我在 ASP.NET 页面上设置缓存并在母版页中包含内容(控件),那么该内容也会被缓存吗?
谢谢。
If I set cache on an ASP.NET page and have content, a control, in the master page then is that cached, as well?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
页面的不同部分可以单独缓存。但是,如果缓存能力设置为“公共”或“私有”,则整个页面(包括母版页)都将被缓存,因为执行缓存的客户端浏览器或代理服务器将无法区分普通页面和普通页面。母版页。
Different portions of a page may be cached separately. However, if the cachability is set to either Public or Private, then the whole page, including the master page, will be cached, because the client browser or proxy servers that are doing the caching will be unable to distinguish between a normal page and a master page.
母版页和页面将被缓存。
Master Page and the page will be cached.