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
tel: +31 (0)162-439809
fax: +31 (0)162-439882
O.Talens@Abyss.nl
*****************************