筆記筆記
string Path = Server.MapPath("txt/abcd.txt");//檔案路徑 using (StreamReader sr = File.OpenText(Path)) { String input; while ((input = sr.ReadLine()) != null) { //input如果不是null的話就會是一行文字 //做處理 } }