How to prevent the page from being cached by the Client Browser Using C#

Code

 

Response.Cache.SetNoStore();

Response.Cache.SetCacheability(System.Web.HttpCacheability.NoCache);

Response.AddHeader("Pragma", "no-cache");

 //Tell proxy servers not to cache the page.

Response.Cache.SetExpires(DateTime.Now.AddSeconds(-1));

Ebook Download
View all

FileInfo in C#

Read by 9.7k people
Download Now!
Learn
View all