-
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??
-
Cool...could you show an example?
Thanks
-
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.
-
-
I take it your also trying to "Piss off" your visitors?