On Tue, 07 Aug 2001 17:05:19 -0700, Walt Sanders  wrote:
>Simon, thanks for the tip, but I've tried this more than once.  I've used
>the meta tag many times in my html programming, but for some reason, when
>I put it into a .cgi program the browser just bounces back and forth to
>and from the .cgi and the .html.  It only shows the .cgi output, but it
>blinks with the correct frequency to reflect the content value, so that
>tells me it is going back and forth.

I'm not sure why that would be happening to you.  What code are you using
to try to do that?  For example, the following prints some html including
the refresh header and redirects the user's browser.

#!/usr/bin/perl -w

print "Content-type:  text/html\n\n";
print <<MSG;
<html>
<head>
<meta HTTP-EQUIV="refresh" content="5; URL=http://www.perl.org";>
</head>
<body>
<p>This is the html message part.</p>
</body>
</html>
MSG

-Dave
--

David Rankin
President, Surf This! Web Design Inc.
Tel:  401.277.9966/877.528.5213
Fax:  603.590.4925
Email:  [EMAIL PROTECTED]
http://www.surfthisdesign.com

Reply via email to