读取:
string path = Server.MapPath("婚不由己.txt");
string txt= File.ReadAllText(path, Encoding.Default);
txtcon.Text=txt;
存储:
string path = Server.MapPath("婚不由己.txt");
StreamWriter sw = new StreamWriter(path);
sw.Write(txtcon.Text);//TextBox2中的文本是可以编辑后的。
sw.Close();
sw.Dispose();
然后在config文件中设置节点:
StreamWriter sw;
sw.WriteLine(strDate);
System.IO