uni_j has asked for the wisdom of the Perl Monks concerning the following question:
use HTML::TokeParser; use WWW::Mechanize; my $mech = WWW::Mechanize->new(); my $stream = HTML::TokeParser->new(\$html); $url = "https://catalog.amherst.edu/amherst/frmCourseSearch.aspx?FormT +ableName=CourseSearch"; $mech->get($url); $html = $mech->content(); open HTML ,'>>html.html'; print HTML $html;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: WWW::Mech and ASPX
by ikegami (Patriarch) on May 28, 2009 at 20:17 UTC | |
by uni_j (Acolyte) on May 29, 2009 at 14:12 UTC | |
by ikegami (Patriarch) on May 29, 2009 at 14:27 UTC | |
|
Re: WWW::Mech and ASPX
by perrin (Chancellor) on May 29, 2009 at 04:25 UTC | |
by uni_j (Acolyte) on May 29, 2009 at 14:13 UTC | |
by perrin (Chancellor) on May 29, 2009 at 14:41 UTC |