well, there's a bare-bones html way of redirecting, but you can't display the seconds remaining or anything with it. what you basically do is add this in between the <HEAD> tags.
CODE
<meta http-equiv="REFRESH" content="time; URL=your.url">
where time is an integer representing number of seconds until redirect, and your.url is the url that you wish to redirect to.
also
www.billstclair.com/html-redirect2.html notes that
QUOTE
It is customary to include a direct link to the page that will be switched to automatically in case you get an older browser that doesn't support the feature or the user doesn't want to wait.
i know that there is a way of using a java applet to countdown to 0 and then redirect, but you probably wouldn't want an applet on a 404 error page

javascript is probably the way to go for that (although it can be easily disabled- so that's another consideration).
all in all, HTML redirection is probably the most compatible way to do it, and, although it can't do anything really flashy, it gets the job done no problems.
all the best.
Reply