Passing parameters to XSL using MSXML

Subject: Passing parameters to XSL using MSXML
From: BOUCHET Sébastien <sebastien.bouchet@xxxxxxx>
Date: Tue, 28 Sep 1999 19:06:05 +0200
Title: Passing parameters to XSL using MSXML

Hi,

the ability to pass parameters to an XSL stylesheet is really convenient. Certain command line XSL processors, like instant-saxon, can accept additionnal parameters that you retrieve with <xsl:param>.

I'm looking for a way to do exactly the same thing with MSXML in an ASP-based site (see above for further details). Unfortunately I couldn't find any complete reference of Microsoft.XMLDOM component, so I don't happen to know how to feed it with parameters after having passed the XML and XSL. I don't even know whether <xsl:param> is supported by this processor or not.

Thanks for any answer,

Sebastien

'''''''''''''''''''''''''''''''''''''''''''''''''
'Current code chunks
set xmldoc = CreateObject("Microsoft.XMLDOM")
set xsldoc = CreateObject("Microsoft.XMLDOM")

''Load the docs
xmldoc.load(...blah...)
xsldoc.load(...blah...)

''Is there anything like :
xsldoc.loadparam("paramname","value") ?????????????????

Current Thread