I'm trying to reload the (default.aspx) page after the back button of the browser is pressed.
I already tried the following:
put ClearCache=1 and purge=true in the querystring
added
<META HTTP-EQUIV=""CACHE-CONTROL"" CONTENT=""NO-CACHE""><META HTTP-EQUIV=""Pragma"" CONTENT=""NO-CACHE""> directly in the master template.
also tried the following in code:
Response.AppendHeader("Pragma", "no-cache")
Response.AppendHeader("Cache-Control", "no-cache")
and
HttpContext.Current.Response.Cache.SetCacheability(HttpCacheability.NoCache)
but none of the above seem to work. Who's knows a workable trick in dynamicweb?
Developer forum
Reload page after back button of browser is pressed
Replies
You must be logged in to post in the forum