vote up 0 vote down star

i am trying to traverse a node attributes ..in below xml ,i need to attach a new node in attribute value '1'or'2'matched.. how can write a code for that using MSXML property..help me i.e browse xml through attribute ...

<data>
    <menu id="**1**">
        <existes>01</existes>
    </menu>
    <menu id="**2**">
       <existes>1</existes>
       <existes>2</existes>
   </menu>
    <  menu id="**3**">
    <existes>2</existes>
   </menu>
</data>
flag

0% accept rate
What exactly should appear after: "attach a new node in attribute valu", show sample pls. – Dewfy Aug 12 at 7:09
data\1 if found '1' means append below a new node...here not considered 'menu' directly... – Rajakumar Aug 12 at 7:17

1 Answer

vote up 0 vote down

So assuming you know how to traverse nodes over document. MSXML exposes for traverse IXMLDOMNode - you need cast it to IXMLDOMElement ( in c++ use QueryInterface in C# or VB just cast to expected interface). IXMLDOMElement - has enumerable property 'attributes' - so you can iterate all attrs of element.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.