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)
Response.Conten tType = "text/html"
'Need to get two values from a form.
I am familiar with getting back the xmlHttp.respons etext to get back all of a webpage that is passed back but not how to get individual values from the form.
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)
Response.Conten tType = "text/html"
'Need to get two values from a form.
I am familiar with getting back the xmlHttp.respons etext to get back all of a webpage that is passed back but not how to get individual values from the form.
Comment