Đang chuẩn bị nút TẢI XUỐNG, xin hãy chờ
Tải xuống
Inserting Nodes Như chúng ta đã biết trong một ví dụ sử dụng XmlTextWriter trước đây tạo một tài liệu mới. Giới hạn là nó không thể chèn một mục mới vào tài liệu hiện tại. Với lớp XmlDocument chúng ta có thể làm điều đó. | Thao tác XML Sử dụng DOM trong .NET - Phần 2 Inserting Nodes Như chúng ta đã biết trong một ví dụ sử dụng XmlTextWriter trước đây tạo một tài liệu mới. Giới hạn là nó không thể chèn một mục mới vào tài liệu hiện tại. Với lớp XmlDocument chúng ta có thể làm điều đó. Thay đổi trình quản lí sự kiện button1_Click trong ví dụ trên như sau DOMSample3 trong mã download private void button1_Click object sender System.EventArgs e change path to match your structure doc.Load . . . . . . books.xml create a new book element XmlElement newBook doc.CreateElement book set some attributes newBook.SetAttribute genre Mystery newBook.SetAttribute publicationdate 2001 newBook.SetAttribute ISBN 123456789 create a new title element XmlElement newT itle doc. CreateElement title newTitle.InnerText The Case of the Missing Cookie newBook.AppendChild newT itle create new author element XmlElement newAuthor doc.CreateElement author newBook.AppendChild newAuthor create new name element XmlElement newName doc.CreateElement name newName.InnerText C. Monster newAuthor.AppendChild newName create new price element XmlElement newPrice doc. CreateElement price newPrice. InnerT ext 9.95 newBook.AppendChild newPrice add to the current document doc.DocumentElement.AppendChild newBook write out the doc to disk XmlTextWriter tr new XmlTextWriter . . . booksEdit.xml null tr.Formatting F ormatting.Indented doc.WriteContentTo tr tr.Close load listBox1 with all of the titles including new .