I have an application which uses XSLT functionality - and it works on my test server, however the production server does not like me doing this:
xslt.stylesheet = xslDoc;
Creation of the XSLT object gives no problem.
...
var xslt = new ActiveXObject("Msxml2.XSLTemplate"
;
var xslDoc = new ActiveXObject("Msxml2.FreeThreadedDOMDocument"
;
...
Both servers are IIS4.0 - so how can I find out the MSXML version running on the server, and how do I get around this problem ?- [I need to be able to apply server-side templates]
<bb/>
xslt.stylesheet = xslDoc;
Creation of the XSLT object gives no problem.
...
var xslt = new ActiveXObject("Msxml2.XSLTemplate"
var xslDoc = new ActiveXObject("Msxml2.FreeThreadedDOMDocument"
...
Both servers are IIS4.0 - so how can I find out the MSXML version running on the server, and how do I get around this problem ?- [I need to be able to apply server-side templates]
<bb/>