Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Подробнее

Why "Response.Cache.SetAllowResponseInBrowserHistory(False)" and "Response.Cache.SetCacheability(HttpCacheability.NoCache)" don't work with FireFox 3.x???

  • 1 ответ
  • 18 имеют эту проблему
  • 1 просмотр
  • Последний ответ от oyuky_leal

more options

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

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

Все ответы (1)

more options

en asp .net con C# se resuelve colocando unicamente en el Page_Load:

Response.Cache.SetNoStore(); Response.Cache.SetCacheability(HttpCacheability.No Cache);

Saludos.