码迷,mamicode.com
首页 > 其他好文 > 详细

下载文件相关

时间:2017-06-17 15:13:41      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:bin   style   arp   efi   span   chm   write   public   color   

1.下载Excel

Response.AddHeader("Pragma", "public");
Response.AddHeader("Cache-Control", "max-age=0");
Response.AddHeader("Content-Disposition", string.Format("attachment;filename={0}", Guid.NewGuid().ToString("N") + ".xml"));
Response.ContentEncoding = Encoding.UTF8;
Response.ContentType = "application/octet-stream";
Response.Write(result.TData.ToString());

2.下载压缩文件

Response.AddHeader("Pragma", "public");
Response.AddHeader("Cache-Control", "max-age=0");
Response.AddHeader("Content-Disposition", string.Format("attachment;filename={0}", zipFileName));
Response.ContentEncoding = Encoding.UTF8;
Response.ContentType = "application/zip";
Response.BinaryWrite(System.IO.File.ReadAllBytes(outZipFileFile));

 

下载文件相关

标签:bin   style   arp   efi   span   chm   write   public   color   

原文地址:http://www.cnblogs.com/ITanyx/p/7040151.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!