In my aplication (ASP.NET + c# ) when user goes to a aspx page , I need to clear cache first.

Does anyone have any idea how can I progrmaticaly make clear cache on an aspx page, or in it's code behind (c#)?

Thanks a lot.

Jeff

link|improve this question

Client or server cache? – Darin Dimitrov Jan 21 '11 at 10:33
client cache, My code it's working only when I clear cache on the browser, otherwise not.. – Jeff Norman Jan 21 '11 at 10:36
feedback

3 Answers

up vote 2 down vote accepted

Write following code in the page load event:

protected void Page_Load(object sender, EventArgs e)
{
    Response.Cache.SetCacheability(HttpCacheability.NoCache);
    Response.Cache.SetExpires(DateTime.Now);
    Response.Cache.SetNoServerCaching();
    Response.Cache.SetNoStore();
}
link|improve this answer
it works for me but locally... when I publish my application to a server it crashes again :( – Jeff Norman Jan 21 '11 at 12:47
What do mean by crashes again.Can u explain me little bit more what actually happened on server. Are u sure whatever crashes on server that's because of caching? – Sukhi Jan 22 '11 at 4:46
feedback

You can remove a page from the output cache as follows:

HttpResponse.RemoveOutputCacheItem("MyPage.aspx");

This won't remove it from any client-side cache, so if you want to use this technique you will probably want to disable client-side cache, e.g. by using the following directive in your aspx page:

<%@ OutputCache Location="Server" ...
link|improve this answer
feedback

Unless there's some javascript way to clear the cache (which would be awful), you can't.

Your best bet is to ensure the page doesn't get cached at all, by doing as Sukhi suggests - or setting up a no-cache cache profile and using the OutputCache directive.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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