Why "Response.Cache.SetAllowResponseInBrowserHistory(False)" and "Response.Cache.SetCacheability(HttpCacheability.NoCache)" don't work with FireFox 3.x???
I have created a website and I don't want user to use Back button to see previous pages. How to disable History in FireFox 3.x and above? The following code doesn't seem to work:
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Response.Cache.SetAllowResponseInBrowserHistory(False)Response.Cache.SetCacheability(HttpCacheability.NoCache) Response.Cache.SetNoStore() Response.Expires = 0
End Sub
Thanks, Ashish
All Replies (1)
en asp .net con C# se resuelve colocando unicamente en el Page_Load:
Response.Cache.SetNoStore(); Response.Cache.SetCacheability(HttpCacheability.No Cache);
Saludos.