Help for this page

Select Code to Download


  1. or download this
    use HTTP::Request::Common;
    $req = POST 'http://www.receiver.com/hello.aspx',
    ...
      Connection   => 'Close',
      Content_type => 'application/x-www-form-urlencoded',
      Content      => [ Data => $pData ];
    
  2. or download this
    use HTTP::Request::Common;
    $req = POST 'http://www.receiver.com/hello.aspx',
    ...
      Connection   => 'Close',
      Content_type => 'application/x-www-form-urlencoded',
      Content      => [ ID => 'Test', Len => $len, Data => $data ];