1Dim objSrvHTTP
2Set objSrvHTTP = Server.CreateObject ("Msxml2.ServerXMLHTTP.6.0")
3 objSrvHTTP.open "GET", "https://example.com/outputJson.php", false
4 objSrvHTTP.send
5 Response.ContentType = "text/html"
6Response.Write(objSrvHTTP.responseText)