Been digging around the forums but cant find anything.
I'm using UrlDownLoadToFile to read web pages. Is it possible to simulate a form submit and read the result in the same way? I cant use the following method as the form contents are too large.
ie. http://myserver/cgi-bin/app.cgi?name...address=street ........ etc
The form is as follows.
<form name="input" action="app.cgi" method="get">
<input type="hidden" name="name" value="steve">
<input type="hidden" name="address" value="street">
...... etc
</form>
I'm using UrlDownLoadToFile to read web pages. Is it possible to simulate a form submit and read the result in the same way? I cant use the following method as the form contents are too large.
ie. http://myserver/cgi-bin/app.cgi?name...address=street ........ etc
The form is as follows.
<form name="input" action="app.cgi" method="get">
<input type="hidden" name="name" value="steve">
<input type="hidden" name="address" value="street">
...... etc
</form>
Comment