Having posted a few comments on the same in perlmonks,
i'd advice to use Super Search.
However, there are many modules which you can use for the purpose
use Win32::IE::Mechanize;
#other code, url, user, password etc.
my $agent = Win32::IE::Mechanize->new(visible=>1);
$agent->credentials($url,$user,$pass);
$agent->get($url);
That'd be one way of doing it
You can also use WWW::Mechanize module, LWP also works, though i've not tried it
Update::::
the code was for basic authentication (htaccess) and not for filling the form on the website.
If you want to fill in form to login, then you can also use Win32::IEAutomation.
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.