First of all, introduce a very good website to learn XML
http://www.xmlfiles.com/
The MS XML Parser Is A Com Component Comes With MS IE 5.0.
The Microsoft Xmldom Parser Features A Language-Neutral Programming Model That: (Results Supported by Various Language)
Supports JavaScript, VBScript, Perl, VB, Java, C and more Suports W3C XML 1.0 and XML DOM Supports DTD and validation Greate an XML document object: JavaScript: var xmlDoc = new ActiveXObject ( "Microsoft.XMLDOM") VBScriptset xmlDoc = CreateObject ( "Microsoft.xmldom") ASPSET XMLDOC = Server.createObject ("Microsoft.xmLDom") Loading An XML File Into the Parser
VAR XMLDoc = New ActiveXObject ("Microsoft.xmLDom") // Create an object
XMLDoc.async = "false" // tells the parser to start parsing when the document is loaded
XMLDoc.Load ("Note.xml") // Loaded file path
// ....... processing the docuument goes here
script> loading pure XML text INTO THE PARSER (Loading Pure Character XML Document)