in reply to Use LWP::UserAgent to go to a password protected ASP page
You can set the WWW-Authenticate (or any other) header in your HTTP::Headers object:
(Side note: WWW::Mechanize may make some of whatever you're trying to do a lot easier)
To see what values you need, try using the Live HTTP Headers plugin for firefox..$h->header('WWW-Authenticate' => 'foo');
(Side note: WWW::Mechanize may make some of whatever you're trying to do a lot easier)
In Section
Seekers of Perl Wisdom