asp.net读取文本文件并加入DataTable中
string configfile = Server.MapPath("~/csspath.txt");
string lineStr = null;
DataTable dt = new DataTable();
dt.Columns.Add("loc");
if(File.Exists(configfile))
{ StreamReader re = File.OpenText(configfile);
try{ while((lineStr = re.ReadLine()) != null)
{ DataRow dr = dt.NewRow(); dr["loc"] = lineStr;
dt.Rows.Add(dr); }
}
finally { re.Close(); }
}