Extends the core Node object with support for data types, namespaces, DTDs, and schemas.
The following VBScript example creates an XMLDOMNode object, currNode, and displays its XML:
Dim xmlDoc
Dim currNode
Set xmlDoc = CreateObject("
Msxml2.DOMDocument")
xmlDoc.async = false
xmlDoc.load("c:\books.xml")
Set currNode = xmlDoc.documentElement.childNodes.item(1)
MsgBox currNode.xml
Properties, Methods, and Events