ASP.NET System.Web.UI.Page 缓存关键依赖项,如何?
如何在 ASP.NET 中为页面设置缓存并为其提供缓存键依赖项?我熟悉如何使用 UserControl 执行此操作,我设置了部分缓存属性,然后设置
this.CachePolicy = new CacheDependency(..)
如何对页面执行此操作?它没有 CachePolicy 对象,谢谢。
How do I setup caching for a Page in ASP.NET and give it a cache key dependency? I am familiar how to do this with a UserControl, I set a Partial Caching attribute and then set
this.CachePolicy = new CacheDependency(..)
How would I do this for a Page? It does not have a CachePolicy object, thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
找到答案:
private void Page_Load(object sender, System.EventArgs e)
{
Response.AddCacheItemDependency(“页面”);
其中
“Pages”是缓存键依赖项。
Found the answer:
private void Page_Load(object sender, System.EventArgs e)
{
Response.AddCacheItemDependency("Pages");
}
where "Pages" is the cache key dependency.