清除部分输出缓存

发布于 2024-12-15 13:39:39 字数 754 浏览 0 评论 0原文

我有一个页面,其中包含输出缓存(部分输出缓存)的控件。这些设置如下:

[PartialCaching(86400, null, null, "campaign.whatwhere", true)]
public partial class controls_LatestEnquiriesListCached : System.Web.UI.UserControl
{

...

如何

public override string GetVaryByCustomString(HttpContext context, string custom)
{
    if (custom == "campaign.whatwhere")
    {
        return (CampaignManager.CurrentCampaign.DefaultWorkTypeId ?? 0).ToString() + (CampaignManager.CurrentCampaign.DefaultEnquiryAreaId ?? 0).ToString();
    }
    return base.GetVaryByCustomString(context, custom);
}

Global.asax 中,

设置才能清除特定页面上的此输出缓存?

是否可以像 MyPageWithCachedControl.aspx?ClearCache=true 这样设置???

I have a page that has controls that are output caches (partial output caching). These are setup like this:

[PartialCaching(86400, null, null, "campaign.whatwhere", true)]
public partial class controls_LatestEnquiriesListCached : System.Web.UI.UserControl
{

...

With

public override string GetVaryByCustomString(HttpContext context, string custom)
{
    if (custom == "campaign.whatwhere")
    {
        return (CampaignManager.CurrentCampaign.DefaultWorkTypeId ?? 0).ToString() + (CampaignManager.CurrentCampaign.DefaultEnquiryAreaId ?? 0).ToString();
    }
    return base.GetVaryByCustomString(context, custom);
}

In Global.asax

How can I setup so I can clear this output cache on a specific page?

Is it possible to setup like MyPageWithCachedControl.aspx?ClearCache=true???

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

自由范儿 2024-12-22 13:39:39

您可以创建一个除了清除缓存之外不执行任何操作的 aspx 页面。您可以获取查询字符串参数并让它通过缓存键删除。

或者您可以尝试查找 ASP.NET 缓存管理器。

You can create an aspx page that does nothing but clears cache. You can take the querystring parameter and have it delete by cache key.

Or you can try to find and ASP.NET cache manager.

童话 2024-12-22 13:39:39

您应该使用 HttpResponse.RemoveOutputCacheItem(path) 清除输出缓存,其中 path 是 https://stackoverflow.com/a/37167/30594

You should use HttpResponse.RemoveOutputCacheItem(path) to clear the output cache where path is the virtual absolute path of the user control as specified in the https://stackoverflow.com/a/37167/30594

相守太难 2024-12-22 13:39:39

使用 HTTPResponse.RemoveOutputCacheItem(pathofpage) 清除特定页面的缓存。

例如:

private void Button1_Click(object sender, System.EventArgs e)
{
   HttpResponse.RemoveOutputCacheItem("/form1.aspx");
}

Use HTTPResponse.RemoveOutputCacheItem(pathofpage) to clear the cache of a particular page.

For example:

private void Button1_Click(object sender, System.EventArgs e)
{
   HttpResponse.RemoveOutputCacheItem("/form1.aspx");
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文