|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: Passing a param to a stylesheet using MSXML3
Use an instance of MSXML.DOMDocument to load your stylesheet.
set objDOM=CreateObject("MSXML.DOMDocument")
objDOM.async=false
objDOM.load styleFile
then select the node and set the value
set paramNode=objDOM.selectSingleNode("//xsl:param[@name='reason']")
paramNode.text = reason
You will then need to apply this to your xml file - use TransformNode on another instance of MSXML.DOMDocument loaded with your xml, passing the objDOM as the parameter.
Hope this helps
Cheers
Huw Parker
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








