我使用 c# asp.net 制作了一个网页。它有各种文本字段和下拉列表以及一个单选按钮。现在我想将数据保存到一个 xml 文件中。而且我真的无法理解如何去做。
我页面中的各种属性是 TEXTBOX: GInfo; 否;组织;姓名;S型;版本;补充;最大用户;最大马赫;机器IP;马赫麦克;UqID
下拉列表:LType
单选按钮:MeapSupp
我是 XML 和 asp.net 和 c# 的新手。你能帮帮我吗?
您可以使用此代码 - 基于XmlTextWriter class
XmlTextWriter textWriter = new XmlTextWriter("yourpath", null);
// Opens the document
textWriter.WriteStartDocument();
textWriter.WriteStartElement("root");
textWriter.WriteAttributeString("xmlns", "x", null, "urn:1");
// Write comments
textWriter.WriteComment("First Comment XmlTextWriter Sample Example");
textWriter.WriteEndElement();
// Ends the document.
textWriter.WriteEndDocument();
// close writer
textWriter.Close();
链接:http: //msdn.microsoft.com/fr-fr/library/system.xml.xmltextwriter.aspx
您还可以使用 LINQ To XML
XDocument doc = new XDocument(
new XDeclaration("1.0", "utf-8", "yes"),
new XComment("This is a test"),
new XElement("root")
);
var root = doc.CreateElement("Test");
....