Subject: xml data islands and parameters
From: "Gitanjali" <narsu@xxxxxxxxxxxxx>
Date: Thu, 14 Jun 2001 23:09:46 -0400
|
I've an xml data island, can I pass the parameter to xsl file. I'm using
Microsoft Parser 3.
I know to create template object . But it's not working...whenever I call
my xsl by passing the parameter it hangs.
Eg:
<xml id="xmldso" src="data.xml">
I updated the xmldso by adding extra elements
I want to pass the parameter to xsl by using xmldso.
var xslDoc = new ActiveXObject("MSXML2.FreeThreadedDOMDocument");
xslDoc.async = false
var tem = new ActiveXObject("MSXML2.XSLTemplate");
tem.stylesheet = xslDoc;
var proc = tem.createProcessor();
//Add the parameters
proc.addParameter("id", "0");
proc.input = xmldso;
//Transform the document
proc.transform();
var str = proc.output;
Thanks
Narsu
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
| Current Thread |
- [no subject]
- Peter Flynn - Thu, 14 Jun 2001 20:21:14 -0400 (EDT)
- Gitanjali - Thu, 14 Jun 2001 23:06:02 -0400 (EDT) <=
|
|