Skip to content

Instantly share code, notes, and snippets.

@nramsbottom
Created May 22, 2014 14:00
Show Gist options
  • Select an option

  • Save nramsbottom/d310775deed1eb540e96 to your computer and use it in GitHub Desktop.

Select an option

Save nramsbottom/d310775deed1eb540e96 to your computer and use it in GitHub Desktop.
public abstract class BasePage : System.Web.UI.Page
{
protected override void OnInit(EventArgs e)
{
// cache none of the things!
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.Cache.SetNoStore();
Response.Cache.SetMaxAge(TimeSpan.Zero);
base.OnInit(e);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment