Jump to content

Recommended Posts

Posted

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...