Tagged Questions
3
votes
1answer
2k views
insert XmlDocument into a XmlDocument node
I created a basic XmlDocument with one node:
XmlDocument bigDoc = new XmlDocument();
bigDoc.LoadXml("<Request></Request>");
and I'm getting another XmlDocument that I want to insert ...
0
votes
2answers
843 views
how to add a xmlnode in a particular postion of xml file using vb.net
could anybody help me to write nodes to existing xml file to a particular position using vb.net?
<xml>
<person>
<name>a</name>
</person>
<person>
...