|
-
May 2nd, 2000, 02:37 PM
#1
Thread Starter
Lively Member
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??
-
May 2nd, 2000, 11:04 PM
#2
Hyperactive Member
Cool...could you show an example?
Thanks
-
May 3rd, 2000, 08:24 AM
#3
Thread Starter
Lively Member
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.
-
May 3rd, 2000, 10:46 PM
#4
Hyperactive Member
-
May 5th, 2000, 07:37 AM
#5
Lively Member
I take it your also trying to "Piss off" your visitors?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|