Auto Close window after X seconds

A

AC

Simple question probably, but how would I have a confirmation page automatically close the window after three seconds?
 
M

MD WebsUnlimited.com

If you're speaking about the FP confirmation page that would mean ending
visit to the web site.


--
Mike -- FrontPage MVP '97-'02
http://www.websunlimited.com
FrontPage Add-ins Since '97 2003 / 2002 / 2000 Compatible
----------------------------------------------------------------------------
--------------------
If you think I'm doing a good job, let MS know at [email protected]

AC said:
Simple question probably, but how would I have a confirmation page
automatically close the window after three seconds?
 
S

Steve Easton

You will have to create a custom confirmation page.
Then use a meta refresh tag to take them back to
the page containing the link they clicked to open the form page.
Assuming the page containing the link is
index.html add this to the custom confirmation page:

<META HTTP-EQUIV=Refresh CONTENT="3; URL=index.htm">

Closing the page could also be done with a javascript.
However since the confirmation page is not opened in
a new window, the user would be prompted to click a pop-up
to close the page.

hth

--
95isalive
This site is best viewed..................
...............................with a computer
AC said:
Simple question probably, but how would I have a confirmation page
automatically close the window after three seconds?
 
Top