<% ' ' sample code for scraping a website and then ' writing the retrieved HTML file to the browser ' dim oHTTP set oHTTP = Server.CreateObject("Microsoft.XMLHTTP") oHTTP.open "GET", "http://www.olemiss.edu", false oHTTP.send response.write (oHTTP.responseText) Set oHTTP = Nothing ' Note, if the other site had been an XML document, ' you could have created an instance of a "Microsoft.xmldom" object ' and loaded your own XSL file to format the incoming data prior ' to displaying it. ' The code to create the ms.xmldom object follows: ' ' set oMSXSL = Server.CreateObject("Microsoft.xmldom") ' ' then you could use set the .async property to false and ' could load your XSL file with a line like the following: ' ' oMSXSL.load(Server.MapPath("mystylesheet.xsl")) ' ' and then you could render the formated xml using your xsl as follows: ' ' set oXML = oHTTP.responseXML ' response.write(oXML.transformmode(oMSXSL)) ' ' as long as there were no parsing errors in the xml/xsl combination... %>