首页 > 其他 > 详细

下载图片

时间:2014-10-24 01:38:42      阅读:261      评论:0      收藏:0      [点我收藏+]
public class DownLoad : IHttpHandler
    {

        public void ProcessRequest(HttpContext context)
        {
            context.Response.ContentType = "text/plain";
            string fileName = context.Request.QueryString["filename"];
            //火狐浏览器支持中文传输,编码后反倒不认了,所以要判断排除火狐浏览器再编码
            string UserAgent = context.Request.ServerVariables["http_user_agent"].ToLower();
            if (UserAgent.IndexOf("firefox") == -1)
            {//非火狐浏览器
                fileName = HttpUtility.UrlEncode(fileName, System.Text.Encoding.UTF8);
            }
            context.Response.AddHeader("Content-Disposition", "attachment;filename=" + fileName);
            context.Response.WriteFile(context.Server.MapPath("Down/") + context.Request.QueryString["filename"]); //这里一定要未编码的文件名字。否则找不到文件
        }

        public bool IsReusable
        {
            get
            {
                return false;
            }
        }
    }

 

下载图片

原文:http://www.cnblogs.com/han1982/p/4047250.html

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