Try this. I just hand wrote it so their may an error or 2 in it. But it should work.
Dim objXML
Dim objXSL
Dim strHTML
'Load the XML File
Set objXML = Server.CreateObject("Microsoft.XMLDOM")
objXML.async = False
objXML.load(Server.MapPath("xmlxsl.xml"))
'Load the XSL File
Set objXSL = Server.CreateObject("Microsoft.XMLDOM")
objXSL.async = False
objXSL.load(Server.MapPath("xmlxsl.xsl"))
' Transform the XML file using the XSL stylesheet
Set objResult = Server.CreateObject("Microsoft.XMLDOM")
objResult.async = False
objResult.validateOnParse = false
objXML.transformNodeToObject(objXSL,objResult)
' Now edit the objResult
Bookmarks