classic asp get json from file

Solutions on MaxInterview for classic asp get json from file by the best coders in the world

showing results for - "classic asp get json from file"
Aitana
25 Jun 2018
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)