senlog80 Posted August 23, 2016 Posted August 23, 2016 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", "http://www.example.com/", False xHttp.send paramList Can anyone help me here. Thanks Senthil
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now