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

Response.AddHeader( "Cache-Control","no-cache");
Response.Expires = 0;
Response.Cache.SetNoStore();
Response.AddHeader("Pragma", "no-cache");

Related posts:

Comments

comments powered by Disqus