Duplicate:
I have to disable back and forward button of browser ( IE and Firefox both ). I have tried:
//disable back button
window.onbeforeunload= function() { }
window.history.forward(1);
but this works only in IE.
Is there any foolproof solution?