J
John
Hi
What is the System.Net.HttpWebRequest equivalent code for the MS XML related
code below?
Thanks
Regards
Set oHttpPost = CreateObject("Microsoft.XMLHTTP")
oHttpPost.Open "POST", "www.MyUrl.com", False
oHttpPost.setRequestHeader "Content-Type",
"application/x-www-form-urlencoded"
POSTData = "<data here>"
oHttpPost.Send (POSTData)
If (oHttpPost.status >= 200 And oHttpPost.status < 300) Then
St = oHttpPost.responseText
End If
What is the System.Net.HttpWebRequest equivalent code for the MS XML related
code below?
Thanks
Regards
Set oHttpPost = CreateObject("Microsoft.XMLHTTP")
oHttpPost.Open "POST", "www.MyUrl.com", False
oHttpPost.setRequestHeader "Content-Type",
"application/x-www-form-urlencoded"
POSTData = "<data here>"
oHttpPost.Send (POSTData)
If (oHttpPost.status >= 200 And oHttpPost.status < 300) Then
St = oHttpPost.responseText
End If