Click to See Complete Forum and Search --> : Disable the Back button
lychew
May 2nd, 2000, 02:37 PM
I got a very interesting way. But it's actually cheating the user. Whenever an user click on a link, that link will bring him to an intermediate page which will redirect him to another page. So when he click the back button, they'll go back to the intermediate page and redirected to the same page. Cool??
compuGEEK
May 2nd, 2000, 11:04 PM
Cool...could you show an example?
Thanks
lychew
May 3rd, 2000, 08:24 AM
This is how:
a.asp
<html>
<body>
<a href="b.asp">link</a>
</body>
</html>
b.asp
<SCRIPT LANGUAGE="JavaScript">
<!--
function Redirect() {
location.href = "c.asp";
}
//-->
</SCRIPT>
<html>
<body onLoad="Redirect()">
</body>
</html>
c.asp
<html>
<body>
testing
</body>
</html>
But i have to say that this is a very stupid way..hehe...I think there's a way using javascript. I'll try to check it out.
compuGEEK
May 3rd, 2000, 10:46 PM
Cool...thanks!
ravcam
May 5th, 2000, 07:37 AM
I take it your also trying to "Piss off" your visitors?
vbforums.com
Copyright Internet.com Inc., All Rights Reserved.