I need to open a POST request in a browser using vbscript.
I can open the browser using GET request by the following commands
Set objWShell = CreateObject("WScript.Shell")
objWShell.Run AddQuotes(url)
But I don't know how to do this for POST request. I have tried the following script, but it do the task silently. It doesn't open the browser.
Set xHttp = CreateObject("MSXML2.XMLHTTP")
xHttp.open "POST", " False
xHttp.send paramList
Can anyone help me here.
Thanks
Senthil
I can open the browser using GET request by the following commands
Set objWShell = CreateObject("WScript.Shell")
objWShell.Run AddQuotes(url)
But I don't know how to do this for POST request. I have tried the following script, but it do the task silently. It doesn't open the browser.
Set xHttp = CreateObject("MSXML2.XMLHTTP")
xHttp.open "POST", " False
xHttp.send paramList
Can anyone help me here.
Thanks
Senthil