vote up 2 vote down star
1

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 setting it up I need a page I can browse to that will reset it.

flag

76% accept rate

2 Answers

vote up 3 vote down check

This should do the trick:

Private Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs)

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

End Sub
link|flag
vote up 1 vote down

This question has already been asked and answered http://beta.stackoverflow.com/questions/11585/clearing-page-cache-in-aspnet

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.