my $hdrs = new HTTP::Headers('Cookie' => $cookie); my $linkinfo = qw(http://www.nottherealsite.com/login.asp?ui=kbeen&pw=pass); my $ncontent = new HTTP::Request('POST', $linkinfo, $hdrs); my $resp = $ua->request($content); my $body = $resp->content; my $string = $resp->as_string(); print $string; # no redirect in here print $body; #none here either