Advertisement
Advertisement
| 01.21.2008 at 04:13PM PST, ID: 23099828 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: |
# working code
#!perl
use LWP;
use Crypt::SSLeay;
$browser = LWP::UserAgent->new();
$browser->timeout(20);
$response = $browser->post(
"https://webpage/logon.asp",
[
"userID" => "user",
"password" => "pass"
]
);
print $response->content();
|