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]

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

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