asp.net实现服务器文件下载到本地

2018-06-22 07:45:04来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

1、说明

  通过文件下载框实现将服务器上的文件下载到本地指定位置。这里需要指定服务器文件路径

    try
    {
        string strFilePath = Server.MapPath("~") + "/excel/20170206104654.xlsx";//服务器文件路径
        FileInfo fileInfo = new FileInfo(strFilePath);
        Response.Clear();
        Response.Charset = "GB2312";
        Response.ContentEncoding = System.Text.Encoding.UTF8;
        Response.AddHeader("Content-Disposition", "attachment;filename=" + Server.UrlEncode(fileInfo.Name));
        Response.AddHeader("Content-Length", fileInfo.Length.ToString());
        Response.ContentType = "application/x-bittorrent";
        Response.WriteFile(fileInfo.FullName);
        Response.End();
    }
    catch (System.Threading.ThreadAbortException ex)
    {
        //不做处理
    }
    catch (Exception ex)
    {
        //做处理
    }

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:webForm系列 前端框架快速引用

下一篇:【G】开源的分布式部署解决方案(三) - 一期规划定稿与初步剖析