如何在XML文件的指定节点下写入值?
<SQLDiary><Imformationtitle="更新"time="2013-11-6"info="备注说明"sql="select*FROMB_MS"/></S...
<SQLDiary>
<Imformation title="更新" time="2013-11-6" info="备注说明" sql="select * FROM B_MS"/>
</SQLDiary>
我想要在<SQLDiary>的节点下循环写入
<Imformation title="更新" time="2013-11-6" info="备注说明" sql="select * FROM B_MS"/>这样类似的子节点,求详细方法 展开
<Imformation title="更新" time="2013-11-6" info="备注说明" sql="select * FROM B_MS"/>
</SQLDiary>
我想要在<SQLDiary>的节点下循环写入
<Imformation title="更新" time="2013-11-6" info="备注说明" sql="select * FROM B_MS"/>这样类似的子节点,求详细方法 展开
展开全部
XmlDocument doc = new XmlDocument();
doc.LoadXml("<SQLDiary> <Imformation title=\"更新\" time=\"2013-11-6\" info=\"备注说明\" sql=\"select * FROM B_MS\"/></SQLDiary>");
XmlNode root = doc.DocumentElement;
//Create a new node.
XmlElement elem = doc.CreateElement("Imformation");
elem.InnerText = "title=\"更新\" time=\"2013-11-6\" info=\"备注说明\" sql=\"select * FROM B_MS";
//Add the node to the document.
root.AppendChild(elem);
Console.WriteLine("Display the modified XML...");
doc.Save(Console.Out);
Console.Read();
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询