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
|
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
| |||||
feedback
|
|
Write following code in the page load event:
| |||||
feedback
|
|
You can remove a page from the output cache as follows:
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:
| |||
|
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. | |||
|
feedback
|