
WebBrowser Control PostData parameter doesn't seem to work
The online help seems to say that if I pass the PostData parameter, then it
will send a POST instead of a GET. I created a page that just turns around
and spits out the form data (ASP: request.form), and I get nothing.
Dim sPostData, sURL as String
Dim oWeb As New InternetExplorer
sPostData = "arg=" & sItemNumber & "&MFR=0"
sURL = " http://www.*-*-*.com/ ;
oWeb.Navigate sURL, , , sPostData