Add a new element to the document. : XmlDocument « XML « VB.Net Tutorial






Imports System
Imports System.Xml

public class Sample 

  public shared sub Main() 

       Dim doc as XmlDocument = new XmlDocument()
       doc.LoadXml("<book>" & _
                   "  <title>AAA</title>" & _
                   "  <price>5.95</price>" & _
                   "</book>") 

       ' Create a new element node.
       Dim newElem as XmlNode
       newElem = doc.CreateNode(XmlNodeType.Element, "pages", "")  
       newElem.InnerText = "290"

       Console.WriteLine("Add the new element to the document...")
       Dim root as XmlElement = doc.DocumentElement
       root.AppendChild(newElem)

       Console.WriteLine("Display the modified XML document...")
       Console.WriteLine(doc.OuterXml)
   end sub
end class








25.1.XmlDocument
25.1.1.Add a new element to the document.