You are not Logged in
Would you like to Login or Register

Today is: 11 March 2010
Check this months hot topics

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);
}
kick it on DotNetKicks.com del.icio.us digg Mister Wong YahooMyWeb Reddit Furl Spurl blogmarks
Paul Hayman Skype
Author : Paul Hayman
Published : 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.

Add Comment

Enter your comment below and it will be submitted for moderation.

Your Name

Add Tag

Please enter tags for this article, seperated by semi-colon ;

View Tag's by : # articles | # views

More Publications

Select a row in an asp:GridView without using a Select Command
Paul Marshall - 14/06/2006
"This row already belongs to another table" Error
Paul Marshall - 24/10/2006
Creating a Tag Cloud in C#
Paul Hayman - 22/08/2006
Authenticated HTTPRequests (Using Credentials)
Dave Howard - 04/09/2006
Google Applicance - googleoff / googleon Tags
Paul Hayman - 27/09/2006