博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
文件下载
阅读量:6656 次
发布时间:2019-06-25

本文共 703 字,大约阅读时间需要 2 分钟。

public ActionResult DownAttachment(string dUrl, string fileName)        {            try            {                dUrl = HttpUtility.UrlDecode(dUrl);                var bytes = new System.Net.WebClient().DownloadData(dUrl);                Response.ContentType = "application/octet-stream";                Response.AddHeader("Content-Disposition", "attachment; filename=" + fileName);                Response.BinaryWrite(bytes);                Response.Flush();                Response.End();            }            catch (Exception ex)            {                Response.Write("");            }            return new EmptyResult();        }

 

转载于:https://www.cnblogs.com/wzq806341010/p/3346649.html

你可能感兴趣的文章
eclipse 插件管理和使用
查看>>
m0n0wall安装配置
查看>>
双向链表
查看>>
前端工程师的进阶之路
查看>>
Go 语言环境变量设置
查看>>
Centos7 配置 sendmail、postfix 端口号25、465
查看>>
ActiveMQ - 初体验,探讨JMS通信模型
查看>>
解密FFmpeg播放状态控制内幕
查看>>
路由器的密码恢复
查看>>
Scenario 6 –HP C7000 Virtual Connect FlexFabric SUS with A/A Uplinks, 8
查看>>
CentOS6.3 64位安装wine出错,牛人帮帮忙
查看>>
我的友情链接
查看>>
python简介
查看>>
python文件读写,以后就用with open语句
查看>>
精通脚本***学习笔记(二)
查看>>
typedef用法
查看>>
【Android必备】应用小部件概述(23)
查看>>
IOS图片的拉伸技巧
查看>>
semaphore.h
查看>>
python3版本mysql的操作
查看>>