Hi,
I'm writing a program what given a homepage url, it can automatically
navigate to the page that contains the query form, fill the form and
submit it.
mshtml.IHTMLInp utElement zipCodeQueryBox =
FindZipCodeQuer yBox(inputEleme nts);
zipCodeQueryBox .value = "60616";
zipCodeQueryBox .form.submit();
Now I'm trying to figure out after zipCodeQueryBox .form.submit(); is
called, what the content (post data) of the HTTP Request is sent out
to the server?
Is there an easy way to get this piece of information?
Thanks!
I'm writing a program what given a homepage url, it can automatically
navigate to the page that contains the query form, fill the form and
submit it.
mshtml.IHTMLInp utElement zipCodeQueryBox =
FindZipCodeQuer yBox(inputEleme nts);
zipCodeQueryBox .value = "60616";
zipCodeQueryBox .form.submit();
Now I'm trying to figure out after zipCodeQueryBox .form.submit(); is
called, what the content (post data) of the HTTP Request is sent out
to the server?
Is there an easy way to get this piece of information?
Thanks!
Comment