RE: [xsl] Dynamically Creating XSL document

Subject: RE: [xsl] Dynamically Creating XSL document
From: Kevin Friend <kevin@xxxxxxxxxxxx>
Date: Tue, 10 Dec 2002 16:05:07 +1100
FYI,

Solved this one myself (often the best way to learn), it was quite simple in
the end....


// Set up the resulting document.
var result = new ActiveXObject("Msxml2.DOMDocument");
result.async = false
result.validateOnParse = true;

var TempSort = new ActiveXObject("Msxml2.DOMDocument");
TempSort.async = false
TempSort.validateOnParse = true;

function CreateXSL()
{
Inner = "<?xml version=\"1.0\"?>";
Inner += "<xsl:stylesheet version=\"1.0\"
xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\";>";
........
........
........
TempSort.loadXML(Inner);
source.transformNodeToObject(TempSort, result);
FetchData(0);
}

The "loadXML" was the missing link! 



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


Current Thread