show/hide this revision's text 2 added 6 characters in body

You could use a combination of JQuery with JSON calls to consume REST services from the client

or

if you need to interact with the REST services from the ASP layer you can use

MSXML2.XMLHTTP

MSXML2.ServerXMLHTTP

like:

Set HttpReq = Server.CreateObject("MSXML2.XMLHTTP"Server.CreateObject("MSXML2.ServerXMLHTTP")
HttpReq.open "GET", "Rest_URI", False
HttpReq.send
show/hide this revision's text 1

You could use a combination of JQuery with JSON calls to consume REST services from the client

or

if you need to interact with the REST services from the ASP layer you can use

MSXML2.XMLHTTP

like:

Set HttpReq = Server.CreateObject("MSXML2.XMLHTTP")
HttpReq.open "GET", "Rest_URI", False
HttpReq.send