這裏保存的數據表值表: 在.txt文件C#
我想獲取該表的所有列和行,並保存在一個.txt文件。
文本文件名必須是SubscriberID.txt(例如:281063.txt或281064.txt)並保存在文件夾名稱manoj中。
在281063.txt文件中,數據保存在SubscriberID中:60; npercentscore:60; nevaleid:7091,courseID:1,... 就像這樣。
Here i take all the data to a datatable:
string query = "SELECT * FROM DATAFETCH";
SqlCommand cmd = new SqlCommand(query, conn);
DataTable dt = new DataTable();
dt.Load(cmd.ExecuteReader());
我該如何使用c#asp.net實現我的目標? 有什麼建議?
的可能的複製[導出一個C#的DataSet一個文本文件](http://stackoverflow.com/questions/7174077/export-ac-sharp-dataset-to-a-text-file) –
先生我想根據SubscriberID的名稱保存在文件夾中的文件。 txt –