How can i edit(extend) existing XML file using XMLlite
I want new to XML.I want to edit an existing .xml file at run time.In my vc++ console application i have used 'XMLlite' to write/read the xml report.
Now i want to extend the information in specific root ...Like
Original:-
<DIJESH>
<Book>
<Date>Today
<Name>Book one</Name>
<Name>Book two</Name>
</Date>
</Book>
</DIJESH>
After Modificaton:-
<DIJESH>
<Book>
<Date>Today
<Name>Book one</Name>
<Name>Book two</Name>
<Name>Book Three</Name>
</Date>
</Book>
</DIJESH>
How can i add new info under the specific root using 'XMLLite'.
If there is any other External library providing the XML editng function.Need Help.
Thanks and Regards ,
Dijesh

