程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> aspx-asp.net修改並保存txt文件

aspx-asp.net修改並保存txt文件

編輯:編程綜合問答
asp.net修改並保存txt文件

我在aspx頁面放一個按鈕然後點擊按鈕的時候把txt文件的內容修改為0,並保存文檔,我要怎麼做呢?求解

最佳回答:


讀取:
string path = Server.MapPath("1.txt");
string txt= File.ReadAllText(path, Encoding.Default);
txtcon.Text=txt;
存儲:

string path = Server.MapPath("1.txt");
StreamWriter sw = new StreamWriter(path);
sw.Write(txtcon.Text);
sw.Close();
sw.Dispose();

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved