XSLTemplate does not work. Why ?
When I try to execute C# program with follow code:
using MSXML2;
public class test {
FreeThreadedDOMDocument30 mXML = new FreeThreadedDOMDocument30();
FreeThreadedDOMDocument30 mXSL = new FreeThreadedDOMDocument30();
XSLTemplate oXSLTemplate = new XSLTemplate();
IXSLProcessor prc = null;
string html = "";
public test() {
//
// mXML loading with async=false;
// mXSL loading with async=false;
//
oXSLTemplate.stylesheet = (IXMLDOMNode)mXSL;
prc = oXSLTemplate.createProcessor();
prc.input = mXML;
prc.transform();
html = prc.output;
}
}
W2K hangs up with CPU:100% !
Is there any way to solve this problem ?
Thanks,
Dmitry

