in reply to cgi write then rewrite

One thing you can do to is to put in the first html page some javascript code that (after a timeout) redirects to a cgi script that will produce the second page.

Replies are listed 'Best First'.
Re^2: cgi write then rewrite
by edan (Curate) on Aug 12, 2004 at 13:40 UTC

    Why do you need javascript, or CGI for that matter? The following HTML in the <HEAD> element should cause the page to refresh itself every 5 seconds (assuming the page is located at /my.htm).

    <META HTTP-EQUIV="REFRESH" CONTENT="5; URL=/my.htm">
    --
    edan