PDA

Click to See Complete Forum and Search --> : Timed redirect


dcarlson
Oct 5th, 2000, 10:21 AM
I have a splash page to enter a web site and I was wondering how I could get it to redirect to the main page after 10 seconds using either ASP or JavaScript.

Thanks in advance.

Oct 5th, 2000, 01:21 PM
You can do this without using ASP or JavaScript.


<META Http-equiv="refresh" Content="10; Url=http://www.site.com/main.htm">

It will refresh to the main page after 10 seconds.
Just place that code either in the <HEAD></HEAD> or the <BODY></BODY>.

dcarlson
Oct 5th, 2000, 03:04 PM
Thanks, I eventually found that piece of code.

Oct 5th, 2000, 07:05 PM
It's actually located in every forum. John (the administrator) has it refresh every 5 minutes (or something like that).

dcarlson
Oct 6th, 2000, 12:17 PM
Cool, I've noticed that it does refresh after a while.