| Joe Fawcett 2005-12-27, 6:28 am |
| "Steven.Xu" <StevenXu@discussions.microsoft.com> wrote in message
news:44AE4C54-EC15-4B4F-BFAA-6BCFA1ECB8E0@microsoft.com...
> Who can explan what's the difference between Node and Element in XML?
> Thanks.
Briefly "node" is a generic term for any of the many types of XML building
blocks, including
element: <myElement/>
attribute: <myElement myAttribute="myValue"/>
text node: <myElement>myTextNode</myElement>
There are also comments, processing instructions and the invisible document
node representing the root of the XML document, as well as others.
http://msdn.microsoft.com/library/d....asp?frame=true
shows how they can be used.
--
Joe Fawcett - XML MVP
https://mvp.support.microsoft.com/p...E8-8741D22D17A5
|