1.建立自己規定樣式的xml文件(體積小,便於傳輸)。
xmldocumentxml = new
xmldocument();
xmlelement
xnode = xml.createelement("
節點名字");
xnode.setattribute("
節點的屬性名"
,節點的值);
xnode.innertext = context.request["specialneeds"];
設定節點的外部文字內容(例如:當是文字內容時需要插入該處)
(最後把該節點新增到xml文件中)
2.讀取自己建立的xml文件。
首先需要接收乙個
xmldocument
型別的物件xml.
xmlnode
xmno = xml.documentelement;
string
mobile = xmno.attributes["
節點的屬性名
"].value.tostring().trim();
(獲取節點屬性的值給變數)
string
needs = xmno.innertext.trim();
(獲取節點插入內容的值)
在C 中建立和讀取XML檔案
專案中需要將前台頁面中的資訊儲存下來並儲存為xml檔案格式到資料庫中去。因此我先在這裡通過乙個小例項來學習xml的建立與讀取。本文部分參考 為了便於測試,我們首先建立控制台應用程式,專案命名為createxml,program.cs 如下 這樣會在c盤根目錄下建立data2.xml檔案,檔案內容為 ...
在C 中建立和讀取XML檔案
專案中需要將前台頁面中的資訊儲存下來並儲存為xml檔案格式到資料庫中去。因此我先在這裡通過乙個小例項來學習xml的建立與讀取。本文部分參考 為了便於測試,我們首先建立控制台應用程式,專案命名為createxml,program.cs 如下 using system using system.coll...
在C 中建立和讀取XML檔案
為了便於測試,我們首先建立控制台應用程式,專案命名為createxml,program.cs 如下 using system using system.collections.generic using system.linq using system.text using system.xml n...