User Profile
Collapse
-
I thought I would have to get the form data from the responsetext of the object. -
Using MSXML2.ServerXMLHTTP.4.0 to get a form value
I am calling a remote web server and awaiting data that is being passed back to my process in a form variable.
postData = "fname=John "
Set xmlHttp = Server.Createob ject("MSXML2.Se rverXMLHTTP.4.0 ")
Call xmlHttp.Open("P OST", "http://www.webSite.com ", false)
Call xmlHttp.setRequ estHeader("Cont ent-Type", "applicatio n/x-www-form-urlencoded")
Call xmlHttp.send(po stData)...
No activity results to display
Show More
Leave a comment: