in reply to Re: Re: Delayed Redirect using CGI.pm
in thread Delayed Redirect using CGI.pm
No meta() anywhere. Refresh is a possible value of the HTTP-EQUIV meta tag.There is no support for the HTTP-EQUIV type of <META> tag. This is because you can modify the HTTP header directly with the header() method. For example, if you want to send the Refresh: header, do it in the header() method: print $q->header(-Refresh=>'10; URL=http://www.capricorn.co +m');
UPDATE: I see that the current version is 2.81, wahoo. Hrmm. Oh well. Seems to me it's be nicer to use the actual HTTP header than the meta tag anyways, given the option. But it looks like TIMTOWTDI
--
perl -pew "s/\b;([mnst])/'$1/g"
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Delayed Redirect using CGI.pm
by Baz (Friar) on May 14, 2002 at 02:12 UTC |