<% '/// Xigla Software - Content Grabber '/// Copyright(c) - XIGLA SOFTWARE '/// http://www.xigla.com '/// Place this include at the top of the asp file that will call the content from the application '/// To retrieve the content : '/// poll=xlaGC(URL_PATH) function xlaGC(what) dim xlaGChttp set xlaGChttp=server.CreateObject("MSXML2.ServerXMLHTTP.4.0") if instr(what,"?")=0 then what=what & "?xlaparsing=true" else what=what & "&xlaparsing=true" xlaGChttp.open "GET", what, false xlaGChttp.send xlaGC=xlaGChttp.responsetext set xlaGChttp=nothing end function %>