Prevent the web browser using the cache for your ASP.NET pages

September 18, 2009 ASP.NET C# Snippet
Response.AddHeader( "Cache-Control","no-cache");
Response.Expires = 0;
Response.Cache.SetNoStore();
Response.AddHeader("Pragma", "no-cache");

Related posts: