代码改变世界

随笔分类 -  下载Excel等文件

多种下载文件方式 Response.BinaryWrite(byte[] DocContent);Response.WriteFile(System.IO.FileInfo DownloadFile .FullName);Response.Write(string html2Excel);

2014-08-07 15:47 by 悠悠鑫宝, 1286 阅读, 收藏,
摘要: 通过html给xls赋值,并下载xls文件一、this.Response.Write(sw.ToString());System.IO.StringWriter sw = new System.IO.StringWriter(); this.Response.Clear(); string strF... 阅读全文

.net文件下载方法汇总

2014-08-07 10:47 by 悠悠鑫宝, 325 阅读, 收藏,
摘要: 转载自:http://blog.sina.com.cn/s/blog_680942070101ahsq.html//TransmitFile实现下载protected void Button1_Click1(object sender, EventArgs e){string strFileName... 阅读全文

asp.net从服务器(指定文件夹)下载任意格式的文件到本地

2014-08-07 10:43 by 悠悠鑫宝, 1723 阅读, 收藏,
摘要: 一、我需要从服务器下载ppt文件到本地protected void Btn_DownPPT_Click(object sender, EventArgs e) { DBService svc = new DBService(); svc.DownPpts(); string strFileName ... 阅读全文