Abd
04-25-2003, 11:52 AM
Hi All,
I have finally solve my Back Button problem with the bellow script;
<html>
<head>
<title>----------</title>
<script language=javascript>
window.history.forward();
</script>
</head>
<body>
.
.
.
</body>
</html>
The script tells the browser to check and see if there are any pages "forward" of the current page in the browser history. if there is, the browser will automatically move forward to that page - effectively, you have disabled the ability to move backwards.
Abd
I have finally solve my Back Button problem with the bellow script;
<html>
<head>
<title>----------</title>
<script language=javascript>
window.history.forward();
</script>
</head>
<body>
.
.
.
</body>
</html>
The script tells the browser to check and see if there are any pages "forward" of the current page in the browser history. if there is, the browser will automatically move forward to that page - effectively, you have disabled the ability to move backwards.
Abd