使用ASP.Net C#..
将Gridview记录导出到文本文件Plz点击这个链接。, http://www.c-sharpcorner.com/UploadFile/0c1bb2/export-gridview-records-to-text-file/ ..
Plz解决这个问题。关注它。 当我们将输出gridview转换为textformat时,当输出进入textfile时,这些文件数据将保存到特定的服务器文件夹中。
答案 0 :(得分:0)
您可能希望使用Response.Write
将其附加到文本文件,而不是在File.WriteAllText(@"C:\Users\Public\TestFolder\WriteText.txt", Rowbind.ToString())
下面写一下;
Response.Output.Write(Rowbind.ToString());
Response.Flush();
Response.End();
有关如何编写文本文件的参考文件位于msdn。