<% ' read from file to DOM tree Set doc = CreateObject("MSXML.DOMDocument") doc.Async = False doc.Load("C:\work\employees.xml") ' transform from DOM Set xsl = CreateObject("MSXML.DOMDocument") xsl.Async = False xsl.Load("C:\work\employeeshtml.xsl") Response.Write doc.TransformNode(xsl) Set doc = Nothing Set xsl = Nothing %>