Fri
8
Jun '07
After the first test phase, it is always the problem for developers to handle browser ‘back button’ disaster. There are so many ways to handle this. But the way you select depends on the nature of your ‘probelm’.
Well, this method I liked much.
Put this in the of your page. This will allow the page to load only ‘forward’ and virtually disables the ‘backword’
Well, this method I liked much.
<script language=“javascript”>
history.go(1);
</script>
Put this in the of your page. This will allow the page to load only ‘forward’ and virtually disables the ‘backword’

Leave a passing comment »