• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ASP.NETMVC下载文件

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

一、后端代码

引用:using System.Web.Mvc;

path 可以是相对路径,也可以是绝对路径

 1 using System.Web.Mvc;
 2 
 3 public FilePathResult DownloadFile(string path)
 4 {
 5 
 6      path = path.Replace("\\", "/");
 7      string type = string.Empty;
 8      int extIndex = path.LastIndexOf(".");
 9      if (extIndex > 0)
10      {
11         type = "application/" + path.Substring(extIndex + 1);
12      }
13 
14      string name = string.Empty;
15      int nameIndex = path.LastIndexOf("/");
16      if (nameIndex > 0)
17      {
18         name = path.Substring(nameIndex + 1);
19      }
20 
21      return File("~/" + path, "application/" + type, name);
22 }

 

二、前端js

引用了jquery.fileDownload.js插件。

下载地址:https://www.bootcdn.cn/jquery.fileDownload/

1 //文件下载
2 function downloadFileJQuery(filePath) {
3     $.fileDownload('/DocManager/DownloadFile?path=' + filePath);
4 }

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
ASP.NETCoreIIS发布发布时间:2022-07-10
下一篇:
asp.net后台正则表达式验证手机号码邮箱发布时间:2022-07-10
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap