in reply to Re^4: What parameters should I send?
in thread What parameters should I send?

nextPage=>'. 2Fpages 2FparcelList.jsp'

That doesn't look right. It seems you used an encoded string, and passed it to $ua->post, which will encode it again.

You can compare the headers your script sends to those that your browser sends, and look for differences.

Also please try to learn about the subject that you're working on (here: HTTP, form submission) and develop some ideas on your own - I won't do your debugging and development forever.

Replies are listed 'Best First'.
Re^6: What parameters should I send?
by brian123 (Novice) on Dec 07, 2010 at 08:34 UTC
    ok, one last question here, how do I view the header that my script sent? can I use the LiveHttpTool for that?
    Thanks.
      how do I view the header that my script sent?

      Either you find some debugging options in LWP::UserAgent, or you use a packet sniffer like wireshark, or you use a proxy that provides you with the debugging information.