如何做从html网格下载到excel或CVS文件在我的c#代码
本文关键字:文件 CVS 我的 代码 excel 何做 html 网格 下载 | 更新日期: 2023-09-27 18:07:53
我正在编写一个应该充当机器人的windows服务。它应该去一个网页,做一些活动,比如登录,然后按一个按钮从另一边获取一些记录。
现在我几乎完成了所有的事情,记录已经从服务器上取出来了。
,但我不知道下载记录从HTML网格到excel或CVS本地文件与c#和。net框架。问题是:如何从HTML网格下载到本地文件与。net框架我没有使用asp.net,它只是一个windows服务
****on click of the button you can dowload the excel****
protected void btn_download_template(object sender, EventArgs e)
{
string str_FolderPath = "c:/Budget_Sample.xlsx";
Response.ContentType = ContentType;
Response.AppendHeader("Content-Disposition", "attachment; filename=" + Path.GetFileName(str_FolderPath));
Response.WriteFile(str_FolderPath);
Response.End();
}