asp.net存储、读取.txt文件
.NET(C#)将TextBox中的内容存储相对路径下的.txt文件中,并如何读取。代码具体怎么写?谢谢各位大侠!protectedvoidButton1(保存)_Cli...
.NET(C#) 将TextBox中的内容存储相对路径下的.txt文件中,并如何读取。代码具体怎么写?谢谢各位大侠!
protected void Button1(保存)_Click(object sender, EventArgs e) { txtBox1.Text.ToString(); }
//读取代码?
protected void Page_Load(object sender, EventArgs e) { } 展开
protected void Button1(保存)_Click(object sender, EventArgs e) { txtBox1.Text.ToString(); }
//读取代码?
protected void Page_Load(object sender, EventArgs e) { } 展开
3个回答
展开全部
读取:
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文件中设置节点:
<httpRuntime requestValidationMode="2.0" />
<pages validateRequest="false">,应该是的,这两个不设置,不调试的时候,会报错,你看下错。
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文件中设置节点:
<httpRuntime requestValidationMode="2.0" />
<pages validateRequest="false">,应该是的,这两个不设置,不调试的时候,会报错,你看下错。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询