首页 > Web开发 > 详细

asp.net 下载

时间:2014-02-26 21:26:10      阅读:647      评论:0      收藏:0      [点我收藏+]
bubuko.com,布布扣
 1 byte[] fileContent =null;//二进制文件
 2 Response.Clear();
 3 Response.ClearHeaders();
 4 Encoding code = Encoding.GetEncoding("gb2312");
 5 Response.ContentEncoding = code;
 6 Response.HeaderEncoding = code;//这句很重要
 7 Response.AddHeader("Content-Disposition", "attachment,inline;filename="+HttpUtility.UrlEncode(System.Text.Encoding.UTF8.GetBytes(downloadName)));//解决中文名乱码问题;
 8 //Response.ContentType = ufile.FileType;//要转换成对应的类型.
 9 if (fileContent != null)
10 {
11    Response.BinaryWrite(fileContent);//输出文件
12 }
bubuko.com,布布扣

asp.net 下载,布布扣,bubuko.com

asp.net 下载

原文:http://www.cnblogs.com/Jin-1007/p/3568309.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!