[2005] How can I download webpages that are POSTed to?
Hello, I pay a subscription for a newsletter service. Once I login, there are hundreds and hundreds of archived newletters.. They are accessed through a 'submit' button after you selected a date through a drop down. Here is the html code:
Code:
<FORM ACTION="printable_newsletter.cfm" METHOD="POST">
<TR><TD>
<div align="center">
<SELECT NAME="NewsletterID" style="font: 8pt Arial;>
<OPTION SELECTED VALUE="">
Please Select A Newsletter Date
<OPTION VALUE="1925">July 10, 2007
<OPTION VALUE="1924">July 09, 2007
<cut> out tons</cut>
<OPTION VALUE="53">May 17, 1998
<OPTION VALUE="51">May 11, 1998
<OPTION VALUE="52">April 26, 1998
<OPTION VALUE="65">January 16, 1998
</SELECT>
<INPUT TYPE="submit" VALUE="Find">
</div></TD></TR>
</FORM>
I can regex and get the VALUE out and feed it to a function to get POSTed.. but how can I setup a function to download each page result once I feed it the VALUE?
thanks!