How do I insert a XML node into a XML document?
XmlNode cNode; // node after which a new node will be inserted
XmlDocument xdoc = new XmlDocument();
//create and load an xml doc
xdoc.LoadXml("<XMLFile>" + “<OldData>Previous Data</OldData>" +
"</XMLFile>");
XmlDocumentFragment docFragment = doc.CreateDocumentFragment();
docFragment.InnerXml = "<Inserted>" + " <NewData>Inserted Data</NewData>" + "</Inserted>";
// insert the new node into the document created above
cNode = xdoc.DocumentElement.FirstChild;
cNode.InsertAfter(docFragment, cNode.LastChild);
//save the resultant xml doc to a file
xdoc.Save("NewDoc.xml");
Back to XML FAQ
Sponsored links
Build IT Knowledge with Current & Trusted Content
Helps Employees Develop & Hone New Technical Programming Skills. Sign Up & Get Full Access.
Helps Employees Develop & Hone New Technical Programming Skills. Sign Up & Get Full Access.
Check Out IT Certification Preparation Materials
Sign Up With SkillSoft & Get Access to Training Materials for Over 50 Professional Certifications.
Sign Up With SkillSoft & Get Access to Training Materials for Over 50 Professional Certifications.
Web based bug tracking - AdminiTrack.com
AdminiTrack offers an effective web-based bug tracking system designed for professional software development teams.
AdminiTrack offers an effective web-based bug tracking system designed for professional software development teams.
Free White Paper: Accelerate Enterprise Apps 2500%
Sign up to learn how solid state disks boost application speed for lots more transactions and users.
Sign up to learn how solid state disks boost application speed for lots more transactions and users.
Free DB Modeling Trial with ER/Studio
Design and Build More Powerful Databases with ER/Studio.
Design and Build More Powerful Databases with ER/Studio.
