Quote:
quote:Originally posted by ChrisScott
Hi,
I think Mircosoft should be Microsoft.
HTH,
Chris
|
Well personally I think the Mircosoft products are very good:)
On a serious note here is some advice from another post:
When asked for a DomDocument IE gives the latest version upto version 2.6 or version 3 if installed in replace mode. See
MSDN - XML for more details if you wish. If you are sure that parser version 3 is available you are better off creating your own parser when needed:
var oStyle = new ActiveXObject("Msxml2.DomDocument.3.0");
oStyle.async = false;
oStyle.setProperty("SelectionLanguage", "XPath");
oStyle.load(xslBook.XMLDocument);
If you know version 4 is available then use that:
var oStyle = new ActiveXObject("Msxml2.DomDocument.4.0");
oStyle.async = false;
oStyle.load(xslBook.XMLDocument);
--
Joe (Co-author
Beginning XML, 3rd edition)