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.
Printable View
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.
You can do this without using ASP or JavaScript.
It will refresh to the main page after 10 seconds.Code:<META Http-equiv="refresh" Content="10; Url=http://www.site.com/main.htm">
Just place that code either in the <HEAD></HEAD> or the <BODY></BODY>.
Thanks, I eventually found that piece of code.
It's actually located in every forum. John (the administrator) has it refresh every 5 minutes (or something like that).
Cool, I've noticed that it does refresh after a while.