I can't find any documentation regarding this line of ASP classic code;
Set objTemplate = Server.CreateObject("MSXML2.XSLTemplate.6.0")
T开发者_运维百科he line is from this Microsoft page;
http://msdn.microsoft.com/en-us/library/ms762312(VS.85).aspx
Specifically, I can't find any info regarding "MSXML2.XSLTemplate". Can anyone help?
objTemplate
is a COM object that supports the IXSLTemplate interface.
You can use it by setting the stylesheet property to a DOM document object loaded from your XSLT and then calling the createProcessor method to return an object that supports the IXSLProcessor interface.
精彩评论