Preventing Caching of an ASP.net page in c#
The following code prevents a page being cached.
public static void PreventCaching(HttpContext context)
{
context.Response.Cache.SetExpires(DateTime.Now.Subtract(new TimeSpan(24, 0, 0)));
context.Response.Cache.SetCacheability(HttpCacheability.NoCache);
}
| Author |
: Paul Hayman |
| Published |
: Monday, 05 November, 2007 |
Paul is the COO of kwiboo ltd consultant and has more than a decade of IT consultancy experience. He has consulted for a number of blue chip companies and has been exposed to the folowing sectors: Utilities, Telecommunications, Insurance, Media, Investment Banking, Leisure, Legal, CRM, Pharmaceuticals, Interactive Gaming, Mobile Communications, Online Services.
Paul is the COO and co-founder of kwiboo (http://www.kwiboo.com/) and is also the creator of GeekZilla.