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: Hiding the XSL ?


> Is any one aware of a way whereby I could load my
> XSL as a string using MSXML.

MSXML has a DOM method (loadXML) where you can pass in a string of
well-formed XML and load it into memory as an XMLDOMDocument.

Set objXML = CreateObject("MSXML2.DOMDocument")
objXML.async = false
objXML.loadXML(xmlstring)


Ben


 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]