asp.net 下载
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 }
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。