Use the Microsoft MSXML3 parser. This enables you to use the new W3C conventions:
set XMLObject = Server.CreateObject("Msxml2.DOMDocument"
' set up the output stream that will receive the output of the command execute
cmd.Properties("Output Stream" = XMLObject 'The XML object
' execute the command stream with the settings specified above to get the XML data
cmd.Execute , , 1024 ' adExecuteStream
XMLObject.async = false
set XSLObject = Server.CreateObject("Msxml2.DOMDocument"
XSLObject.async = false
XSLObject.load(Server.MapPath("." & "/../XSL/FormatQuestion.xsl"
'*** Combine XML and XSL
Result = XMLObject.transformNode(XSLObject)
'*** Return the result
Response.Write(Result)
Regards,
Oliver Talens
*****************************
Abyss I.T. Solutions
Mathildastraat 36B
4901 HC Oosterhout
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.