Hi,
I have to reload the page on every browser back button click. I have tried to clear the cache by using the following code:
Response.Buffer = true;
Response.CacheControl = "no-cache";
Response.AddHeader("Pragma", "no-cache");
Response.AppendHeader("Cache-Control", "no-store");
Response.Expires = -1;
but that also not working for me.
Can you suggest some ways to resolve this issue.
Thanks,
Saritha.