Response.Cache.SetExpires(DateTime.UtcNow.AddMinutes(-1));
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.Cache.SetNoStore();
I am using this code for clear cache on browser back button.
It is working fine for mozilla firefox and Explorer.
But it is not working for google chrome.