Back button
-
You can't disable it, not in IE, not in FireFox. What are you trying to achieve ?
Christian Graus Driven to the arms of OSX by Vista.
-
You can't disable it, not in IE, not in FireFox. What are you trying to achieve ?
Christian Graus Driven to the arms of OSX by Vista.
u cant disable it wat u can delete cashe value to do it something like that in page load of that page { response.cache.setcacheabilty(httpcacheabilty.nocache); response.acche.setallowresponseinbrowserhistry(false);\ } but this is ok only for one page..
-
You can't disable it, not in IE, not in FireFox. What are you trying to achieve ?
Christian Graus Driven to the arms of OSX by Vista.
I want to achieve the same functionality which is implemented on http://www.icicibank.com for back button.
Mahendra Bisht.
-
You can't disable it, not in IE, not in FireFox. What are you trying to achieve ?
Christian Graus Driven to the arms of OSX by Vista.
i solved the problem using following code. But is this code is globally accepted or not please advice me. function noBack() { window.history.forward() } noBack(); window.onload=noBack; window.onpageshow=function(evt){if(evt.persisted)noBack()} window.onunload=function(){void(0)}
Mahendra Bisht.
-
i solved the problem using following code. But is this code is globally accepted or not please advice me. function noBack() { window.history.forward() } noBack(); window.onload=noBack; window.onpageshow=function(evt){if(evt.persisted)noBack()} window.onunload=function(){void(0)}
Mahendra Bisht.
where is function(evt) and if u want to go another page from this page does it go .