Return to Index  

comme ci...

July 18 2000 at 2:19 PM
 
from IP address 24.92.141.161


Response to How do you redirect?

 

There are a few ways.

1)

<script language="javascript">
<!--
window.location = 'http://some.other.page';
// -->
</script>

But that requires javascript.

2)

Put this between the <head> and </head> tags:

<meta http-equiv="REFRESH" URL="http://some.other.page/" CONTENT="1">

But that will wait 1 second before redirecting.

3)

Or you could try this way (I haven't tested it, but I think it should work):

<meta http-equiv="Location" content="http://some.other.page/">;

 
 Respond to this message   
Responses

Create your own forum at Network54
 Copyright © 1999-2009 Network54. All rights reserved.   Terms of Use   Privacy Statement