asp.net – 如何在不重新启动应用程序的情况下清除网站的OutputCache

前端之家收集整理的这篇文章主要介绍了asp.net – 如何在不重新启动应用程序的情况下清除网站的OutputCache前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法清除或重置整个网站的输出缓存没有重新启动?

我刚刚开始在网站上使用outputcache,当我设置错误时,我需要一个页面,我可以浏览,将重置它.

解决方法

这应该是诀窍:
Private Sub Button1_Click(ByVal sender As Object,ByVal e As System.EventArgs)

 Dim path As String
 path="/AbosoluteVirtualPath/OutputCached.aspx"
 HttpResponse.RemoveOutputCacheItem(path)

End Sub
原文链接:https://www.f2er.com/aspnet/246692.html

猜你在找的asp.Net相关文章