我想以 XML 格式保存我的网页。我想过使用 XmlDocument 来保存值。我尝试搜索它,但找不到将文本框中输入的数据保存到 xml 文档的正确方法。
有什么办法吗?虽然不正确,但这是我到目前为止所做的。
XmlDocument XDoc = new XmlDocument();
// Create root node.
XmlElement XElemRoot = XDoc.CreateElement("Generate_License");
//Add the node to the document.
XDoc.AppendChild(XElemRoot);
XmlElement Xsource = XDoc.CreateElement("General_Info", txtGInfo.ToString());
XElemRoot.AppendChild(Xsource);