如何在每次增量或每当数据更新时读取和更新XML属性(Id)值?
public partial class new1 : System.Web.UI.Page
{
int i;
protected void Page_Load(object sender, EventArgs e)
{
i = i + 1;
}
protected void Button1_Click(object sender, EventArgs e)
{
if (Page.IsValid)
{
XmlDocument xdoc = new XmlDocument();
xdoc.Load(Server.MapPath("~/LoginRegister.xml"));
Console.WriteLine(xdoc);
XmlElement contact = xdoc.CreateElement("Profile");
XmlAttribute Id = xdoc.CreateAttribute("Id");
Id.Value = i.ToString();
}
}
}
到目前为止,我一直尝试读取XML文件并创建一个属性,但是每次单击该特定属性都不会更新。
我该如何实现?