asp.net存储、读取.txt文件

2025-01-02 05:13:00
推荐回答(3个)
回答1:

读取:
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文件中设置节点:

,应该是的,这两个不设置,不调试的时候,会报错,你看下错。

回答2:

StreamWriter sw;
sw.WriteLine(strDate);

回答3:

System.IO