Reinier Post <[EMAIL PROTECTED]> writes:
> You can tell LWP to parse the <HEAD> and produce additional document
> headers from tags such as this one.
LWP will always parse the <HEAD> unless you tell it to not do it (with
$ua->parse_head(0)). It means that it should always be enought to
simply check for:
if (my $refresh = $res->header("Refresh")) {
# do something, will also trigger refresh embedded in HTML
...
}
Regards,
Gisle
- handling refreshes Cgreenhill
- Re: handling refreshes Reinier Post
- Re: handling refreshes Gisle Aas
- Re: handling refreshes Steve Rasmussen
- Re: handling refreshes Reinier Post
