Re: Why doesn't LWP get html file?
trymelz@xxxxxxxxx wrote:
$html has nothing from the following code.
Hard to tell what the problem is - the code works for me. Maybe you
ought to try something simpler?
#!/usr/bin/perl
use strict;
use warnings;
use LWP::Simple;
my $Surfurl =
'
http://us.randstad.com/webapp/internet/servlet/BranchView?b=702';
my $html = get $Surfurl;
print $html;
__END__
--
Gunnar Hjalmarsson
Email:
http://www.gunnar.cc/cgi-bin/contact.pl
.
Relevant Pages
- Re: HTML4.01 STRICT and hyperlinks with target
... NOT included into STRICT doctype. ... I can even say I think it IS a good reason. ... You aren't using HTML 4.01 Strict because you agree with the basic ... What about an abilitycheck in JavaScript, eg: ... (comp.infosystems.www.authoring.html) - Re: Printing directory sizes
... use warnings; ... use strict; ... The total size of the file in html is 27928.85 Kb ... The total size of the file in lib is 51368.47 Kb ... (perl.beginners) - Re: iframe validation issues
... the iframe tag. ... proper html and thus will not validate. ... strict. ... strict version of html or xhtml from html 4.01 on. ... (alt.html) - Re: HTML4.01 STRICT and hyperlinks with target
... I can even say I think it IS a good reason. ... You aren't using HTML 4.01 Strict because you agree with the basic philosophy behind that doctype; ... I found 1 thing in STRICT I don't agree with for reasons I already explained (no JavaScript, and clients who have mental problems with remembering how to open a new window). ... (comp.infosystems.www.authoring.html) - Re: HTML4.01 STRICT and hyperlinks with target
... It is a matter of the basic design philosophy behind HTML ... to do to do with frames or windows, because HTML 4.01 Strict ... content, styling, and browser behaviour. ... doctype and you ignored the question. ... (comp.infosystems.www.authoring.html) |
|