automatic redirect

J

jdh

How do I setup a temporary auto-redirect in FP2000? I've
changed all the hyperlinks to the page in question, but I
want to account for those who have the specific page
bookmarked. I want to keep the page so I can work on it
without taking it down, and just have it redirect to
another page temporarily.


Thanks.
 
K

Kevin Spencer

The easiest way is to set up a META Refresh tag in the <head> section of
your page. The following is an example:

<META HTTP-EQUIV=Refresh CONTENT="1;
URL=http://www.yoursite.com/yourpage.htm">

The first parameter of the CONTENT attribute is the number of seconds to
delay. The second is the URL to redirect to.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 
Top