#List page is the BASE page from which I am starting my $aspContent= $aspnet->httpRequest->content; my $req = HTTP::Request->new(POST => "$LIST_PAGE"); $req->content_type('application/x-www-form-urlencoded'); $req->content("$aspContent"); my $res = $mech->request($req); if ($res->is_success) { $content = $res->content; } print $content;