本文介绍了将数据从TextBox保存到XML文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

嗨我正在使用C#.net开发一个Web应用程序,能否给我一些有关如何将文本框中的数据存储到asp.net中的XML文件的想法,例如当用户在文本框中输入一些数据并单击

HiI am developing a web application using C# .net, can you give me some idea on how to store data from textbox to XML file in asp.net, like when user enters some data into the textbox''s and click''s on the submit button, all the data which the user entered into the textbox''s should be stored in the XML file.

推荐答案


DataSet ds = new DataSet();
ds.ReadXml(Server.MapPath("YourXMLFile"));
ds.Tables[0].Rows[0]["NodeName"] =textbox1.Text;
ds.AcceptChanges();
ds.WriteXml(Server.MapPath("YourXMLFile"));



这篇关于将数据从TextBox保存到XML文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 23:30
查看更多