Is there a way clear or reset the outputcache for an entire website without a restart?
I\'m just starting to use outputcache on a site and when I make a mistake in s
This should do the trick:
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