Despite my efforts to prevent browser caching, the URLs of my applications are still being stored in cache. I have implemented the following code in the page load method of my master page to disable browser cache:
Response.Cache.SetCacheability(HttpCacheability.ServerAndNoCache);
Response.Cache.SetAllowResponseInBrowserHistory(false);
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.Cache.SetExpires(DateTime.Now.AddSeconds(-1));
Response.Cache.SetNoStore();
Response.AddHeader("Pragma", "no-cache");
I also tried using meta tags in the HTML pages as an alternative, but the cached data is still showing up in the following browser paths:
1. chrome://cache/
2. about:cache?storage=disk&context=