Hello, yes, I know the problem is overdiscussed, but I tried all the workarounds proposed by you, still doesn't work for me..
I set ReloadOnShow = false, put the code do disable cash in PreRender handler :
I set ReloadOnShow = false, put the code do disable cash in PreRender handler :
Response.Cache.SetCacheability(
HttpCacheability.NoCache);
Response.Cache.SetNoServerCaching();
Response.Cache.SetNoStore();
Response.AppendHeader("Pragma", "no-cache");
Response.Expires = -1;
Response.CacheControl = "no-cache";
But the page still loads twice.