Spudhead
01-10-2005, 06:29 PM
I need a reference for this.
' Create XSL Template object and XSL Processor object.
' Pass in XML and XSL documents
set template = Server.CreateObject("MSXML2.XSLTemplate.3.0")
set template.stylesheet = oXSLDoc
set proc = template.createProcessor
proc.input = oXMLDoc
I'm using the above code, it works, but I just copied it off another site and I can't find anywhere that gives me a nice, DevGuru-style reference of all the properties and methods available with a "XSLTemplate.3.0" object. And I probably need to :)
' Create XSL Template object and XSL Processor object.
' Pass in XML and XSL documents
set template = Server.CreateObject("MSXML2.XSLTemplate.3.0")
set template.stylesheet = oXSLDoc
set proc = template.createProcessor
proc.input = oXMLDoc
I'm using the above code, it works, but I just copied it off another site and I can't find anywhere that gives me a nice, DevGuru-style reference of all the properties and methods available with a "XSLTemplate.3.0" object. And I probably need to :)