Last active
August 29, 2015 14:02
-
-
Save mgroves/b99b177b8cc5c5e6425f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <% | |
| dim url | |
| url = "http://yoururl/jsonendpoint" | |
| Set HttpReq = Server.CreateObject("MSXML2.ServerXMLHTTP") | |
| HttpReq.open "POST", url, false | |
| HttpReq.setRequestHeader "Content-Type", "application/x-www-form-urlencoded" | |
| HttpReq.Send("Foo=bar") | |
| %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment