Developer forum

Forum » Development » Reload page after back button of browser is pressed

Reload page after back button of browser is pressed


Reply
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?


Replies

 
Reply
Your solution might work in some browsers, but I don't think there is a common workaround to this issue.

 - Lasse

 

You must be logged in to post in the forum