Asp.Net讀寫XML簡單方法


xml文件

<?xml version="1.0" encoding="utf-8"?>
<book>
  <title>webapi入門</title>
  <author>李白</author>
  <price>100</price>
</book>

 

讀取xml

//讀取xml
        XmlDocument xdoc = new XmlDocument();
        xdoc.Load(Server.MapPath("/App_Data/data.xml")); XmlElement root = xdoc.DocumentElement; //獲取根節點 Response.Write(root.GetElementsByTagName("price")[0].InnerText);

 

修改xml

//寫入xml
        XmlDocument xdoc = new XmlDocument();
        xdoc.Load(Server.MapPath("/App_Data/data.xml")); XmlElement root = xdoc.DocumentElement; //獲取根節點 root.GetElementsByTagName("price")[0].InnerText = "200"; xdoc.Save(Server.MapPath("/App_Data/data.xml"));

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM