利用repeater绑定下载地址并点击下载(避免中文文件名乱码)

简介:
 

aspx       

             <asp:Repeater ID="Repeater1" runat="server">
                        <HeaderTemplate>
                            <table>
                                <tr>
                        </HeaderTemplate>
                        <ItemTemplate>
                            <tr>
                                <td style="border: 0px;">
                                    <a href='../download.ashx?url=<%# Server.UrlEncode(Eval

                                    ("FilePath").ToString())%>'>
                                     <%#eval_r("FileName")%></a>
                                </td>
                        </ItemTemplate>
                        <FooterTemplate>
                            </tr></table></FooterTemplate>
                    </asp:Repeater>

 

download.ashx

using System;
using System.Collections;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Services;
using System.Web.Services.Protocols;
using System.Xml.Linq;

namespace Web.UCenter
{
    /// <summary>
    /// $codebehindclassname$ 的摘要说明
    /// </summary>
    [WebService(Namespace = "http://tempuri.org/")]
    [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
    public class download : IHttpHandler
    {

        public void ProcessRequest(HttpContext context)
        {
            try
            {
                string path = context.Request.QueryString["url"].ToString();
                System.IO.FileInfo file = new System.IO.FileInfo(path);
                context.Response.Clear();
                context.Response.Charset = "GB2312";
                context.Response.ContentEncoding = System.Text.Encoding.UTF8;

                // 添加头信息,为"文件下载/另存为"对话框指定默认文件名
                context.Response.AddHeader
                    ("Content-Disposition",
                    "attachment; filename="
                    +

                   System.Web.HttpUtility.UrlEncode

                (file.Name,System.Text.Encoding.UTF8));// 防止中文名有乱码

                // 添加头信息,指定文件大小,让浏览器能够显示下载进度
                context.Response.AddHeader("Content-Length", file.Length.ToString());

                //// 指定返回的是一个不能被客户端读取的流,必须被下载
                //context.Response.ContentType = "application/ms-excel";

                // 把文件流发送到客户端
                context.Response.WriteFile(file.FullName);

                // 停止页面的执行
                context.Response.End();

            }

            catch
            {
                context.Response.Write("您下载的资源不存在!");
            }


        }

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

 

注意点:我在数据库存储的文件路径是加server.map的绝对路径。实际下载的时候根据实际情况修改代码。

目录
相关文章
|
8月前
|
Web App开发 Windows
【Windows】 chrome 如何下载网站在线预览PDF文件,保存到本地
【Windows】 chrome 如何下载网站在线预览PDF文件,保存到本地
751 0
|
8月前
|
编译器 开发工具 C++
Dev-C++详细安装教程及中文设置(附带安装包链接)
Dev-C++详细安装教程及中文设置(附带安装包链接)
3184 0
|
8月前
|
存储
Obsidian 与 Typora 图片兼容保存路径一致设置
Obsidian 与 Typora 图片兼容保存路径一致设置
519 0
|
8月前
|
存储 程序员
Typora设置 “图片自动保存到文档对应目录下” 的方法(亲测有效)
Typora设置 “图片自动保存到文档对应目录下” 的方法(亲测有效)
|
8月前
|
Web App开发 定位技术
Chrome中实现使用迅雷一次性选中并下载网页内全部链接的方法
Chrome中实现使用迅雷一次性选中并下载网页内全部链接的方法
183 1
|
8月前
|
Windows
Windows【工具 01】视频下载工具BBDown.exe详细使用说明(https://github.com/nilaoda/BBDown)mp4格式无法识别问题处理(最新版本1.6.1网盘分享)
Windows【工具 01】视频下载工具BBDown.exe详细使用说明(https://github.com/nilaoda/BBDown)mp4格式无法识别问题处理(最新版本1.6.1网盘分享)
634 0
|
iOS开发 MacOS Windows
idm2023最新版下载器怎么设置中文?
1.首先你可以到idm中文版本下载后,将idm下载到本地电脑上。注意:目前idm是免费下载的,支持win系统。
288 0
|
Web App开发 存储 iOS开发
Mac系统一键下载网页图片
Mac系统一键下载网页图片
Mac系统一键下载网页图片
谷歌浏览器下载的内容老是自动打开
原因是每次下载内容在浏览器左下角都有提示,一般都是选择打开所在文件夹,一次手残,点了总是打开此文件导致一下载文件就自动打开。
1061 0
谷歌浏览器下载的内容老是自动打开
|
IDE 测试技术 开发工具
PyCharm设置中文(无需下载中文汉化包)
PyCharm设置中文(无需下载中文汉化包)
239 0
PyCharm设置中文(无需下载中文汉化包)