This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: trying to load xml and xsl nothing happing


Change:

result = XMLDoc.documentElement.transformNode(XSLDoc);

to

result = XMLDoc.transformNode(XSLDoc);


Max

-----Original Message-----
From: owner-xsl-list@lists.mulberrytech.com
[mailto:owner-xsl-list@lists.mulberrytech.com] On Behalf Of Meir
Sent: Sunday, June 16, 2002 9:36 PM
To: XSL-List@lists.mulberrytech.com
Subject: [xsl] trying to load xml and xsl nothing happing


Hello list ,

i have this code :

var XMLDoc;

var XSLDoc;

var result ;

XMLDoc=new ActiveXObject('Msxml2.DOMDocument.3.0');

 XMLDoc.async = false;

XSLDoc=new ActiveXObject('Msxml2.DOMDocument.3.0') ;

XSLDoc.async = false; XMLDoc.load("flashCTL.xml");

XSLDoc.load("flashCTL.xsl");

result = XMLDoc.documentElement.transformNode(XSLDoc);

alert(result);

Tree.innerHTML = result;



i keep geting    <?xml version="1.0" encoding="UTF-16"?> , why?



 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]