Click here to Skip to main content
15,885,366 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Here is a xml file
XML
<CarsService>
  <make name="AAA">
    <model name="ssss">
      <color name="Red" />
    </model>
    <model name="qqqq">
      <color name="Green" />
    </model>
  </make>
  <make name="AAB">
    <model name="aaaa">
      <color name="Black" />
    </model>
  </make>
  <make name="AAC">
    <model name="dddd">
      <color name="Blue" />
    </model>
  </make>
</CarsService>

If i want to insert a new node inside the existing node how to write that?
Suppose i want to insert a color node which has a attribute say Pink in make node "AAA" and model node "qqqq".
How to do that?

If i want to modify any of sub node; how should i do that? even to delete some specific node or sub node how to do that also?

Thanks in advance.
Posted
Updated 11-Sep-12 20:22pm
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900