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

ashx byte[]下载

时间:2020-02-27 10:29:14      阅读:54      评论:0      收藏:0      [点我收藏+]

标签:content   参数   header   proc   download   sre   sys   text   void   

html部分<a href="ashx?参数">

ashx部分

public override void ProcessRequest(HttpContext context)
{
this.UserID = base.BaseUserID;
this.strAttachGuid = context.Request["AttachGuid"];
byte[] bytes = Download(context);

if (bytes != null)
{
context.Response.Buffer = true;
context.Response.Clear();
context.Response.ContentType = "application/download";
context.Response.AddHeader("Content-Disposition", "attachment;filename=" + System.Web.HttpUtility.UrlEncode(strFileName, System.Text.Encoding.UTF8));
context.Response.BinaryWrite(bytes);
context.Response.Flush();
context.Response.Clear();
context.Response.End();
}
}

ashx byte[]下载

标签:content   参数   header   proc   download   sre   sys   text   void   

原文地址:https://www.cnblogs.com/chengeng/p/12370684.html

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