Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use WWW::Mechanize;
    ...
    $mech->get('https://YYYY.aspx');#going to another link on the same web
    +site
    my $html_string = $mech->content();
    print $html_string;
    
  2. or download this
    #!/usr/bin/perl
    use WWW::Mechanize;
    ...
    $mech->get('https://YYYY.aspx');#going to another link on the same web
    +site
    my $html_string = $mech->content();
    print $html_string;