下载 byte[] 文件

   if (ContentByte == null)
                return;
            string downLoadFileName = Name + "." + ByteUitl.FileType(ContentByte);
            Response.ContentType = "application/octet-stream";
            //通知浏览器下载文件而不是打开
            Response.AddHeader("Content-Disposition", "attachment;filename=" + HttpUtility.UrlEncode(downLoadFileName, System.Text.Encoding.UTF8));
            Response.BinaryWrite(ContentByte);
            Response.Flush();
            Response.End();
原文地址:https://www.cnblogs.com/kingteach/p/2041322.html