Thanks, very good point... I rewrote the code to make a post request so I could pass it into my $mech

#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;

So what I assume is that this should be sent like :
POST
Host: $LIST_PAGE
User-Agent: Mozilla/5.1
Content-Type: application/x-www-form-urlencoded
Content: With the content of the asp post here.
This runs but however still returns the base page. So I am still back where I started :(


In reply to Re^2: "Request URI Too Large (The size of the required header is too large...." by chronicdose
in thread "Request URI Too Large (The size of the required header is too large...." by chronicdose

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.