Click to See Complete Forum and Search --> : Remove page from browser history ?


PisgahMan
01-03-2003, 11:42 AM
Is it possible using javascript to remove a page from the browsers history, so that the back button will essentially go back 2 pages? Expiring the page will not work, I do not want the user to be able to back into this page at all whether the page is cached or reloaded.

Thanks in advance!

PisgahMan
01-06-2003, 11:50 AM
I added this code to the page to keep them from using the back button at all.

function body_onload(){
window.history.forward(1);
}