Ein Bsp. Code den ich gefunden habe (Visual Studio).
Code:
...
' create the object that manages the communication
Dim oXMLHttp As XMLHTTP
Set oXMLHttp = New XMLHTTP
' prepare the HTTP POST request
oXMLHttp.open "POST", "https://www.server.com/path", False
oXMLHttp.setRequestHeader "Content-Type", _
"application/x-www-form-urlencoded"
' send the request
oXMLHttp.send requestString
' server's response will be available in oXMLHttp.responseXML
oXMLHttp.responseXML
...