ASP.NET System.Web.UI.Page 缓存关键依赖项,如何?

发布于 2024-10-17 19:28:08 字数 191 浏览 1 评论 0原文

如何在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你穿错了嫁妆 2024-10-24 19:28:08

找到答案:

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文