Disable forward and backward browser
-
How to disable forward and backward through browser ... i used these things
history.go(1);
function noBack() \\ this is called while body unload
{
window.history.forward();
}
<script/>
</pre>This will be performed like page reload ... doesnt maintain the data of that page...
please let me know if need anything more...
thanks...</x-turndown>
-
How to disable forward and backward through browser ... i used these things
history.go(1);
function noBack() \\ this is called while body unload
{
window.history.forward();
}
<script/>
</pre>This will be performed like page reload ... doesnt maintain the data of that page...
please let me know if need anything more...
thanks...</x-turndown>
in body onload call
BODY onload="noBack();"
-
How to disable forward and backward through browser ... i used these things
history.go(1);
function noBack() \\ this is called while body unload
{
window.history.forward();
}
<script/>
</pre>This will be performed like page reload ... doesnt maintain the data of that page...
please let me know if need anything more...
thanks...</x-turndown>
Following tip should give you insight: http://www.codeproject.com/Tips/135121/Browser-back-button-issue-after-logout.aspx[^] All you need is to not let the browser cache.
Sandeep Mewara [My last tip/trick]: Browser back button issue after logout