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

转换成流字节,输出浏览器下载

时间:2017-01-03 11:34:58      阅读:273      评论:0      收藏:0      [点我收藏+]

标签:isp   输出   header   buffer   tac   binary   cte   通知   chm   

//转换成流字节,输出浏览器下载
var byti = file.SaveToStream().GetBuffer();
////通知浏览器保存文件,其实也就是输出到浏览器
Response.Clear();
Response.ContentType = "application/octet-stream";
Response.AppendHeader("Content-Disposition", "attachment;filename=" + filename);
Response.BinaryWrite(byti);
Response.Flush();
Response.Close();

转换成流字节,输出浏览器下载

标签:isp   输出   header   buffer   tac   binary   cte   通知   chm   

原文地址:http://www.cnblogs.com/sntetwt/p/6244063.html

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