Re: trouble with meta http-equiv

2006-12-01 Thread David Bear
Wiggins d'Anconia wrote: > David Bear wrote: >> I'm trying to put a client side redirect with http-equiv refresh. I'm >> using the syntax: >> >> my $req = CGI->new(); >> >> print $req->header( "text/html" ); >> print $req->start_html( -head=>meta({-http-equiv => 'refresh', > > In the above lin

Re: trouble with meta http-equiv

2006-11-30 Thread Wiggins d'Anconia
David Bear wrote: I'm trying to put a client side redirect with http-equiv refresh. I'm using the syntax: my $req = CGI->new(); print $req->header( "text/html" ); print $req->start_html( -head=>meta({-http-equiv => 'refresh', In the above line the call to meta() is a function call, but you

trouble with meta http-equiv

2006-11-30 Thread David Bear
I'm trying to put a client side redirect with http-equiv refresh. I'm using the syntax: my $req = CGI->new(); print $req->header( "text/html" ); print $req->start_html( -head=>meta({-http-equiv => 'refresh', -content => '1;URL=' . $req-refere()})); but I get an error: Undefined