码迷,mamicode.com
首页 > Web开发 > 详细

MVC下载文件

时间:2017-11-21 14:44:05      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:extension   default   text   hit   content   nload   ati   action   cti   

public ActionResult DownLoad() { var download = new Download(); using (DataClasses1DataContext db = new DataClasses1DataContext()) { download = db.Download.FirstOrDefault(); } string fileName = !String.IsNullOrWhiteSpace(download.Filename) ? download.Filename : "TestFile"; string contentType = !String.IsNullOrWhiteSpace(download.ContentType) ? download.ContentType : "application/octet-stream"; return new FileContentResult(download.DownloadBinary.ToArray(), contentType) { FileDownloadName = fileName + download.Extension }; }

MVC下载文件

标签:extension   default   text   hit   content   nload   ati   action   cti   

原文地址:http://www.cnblogs.com/opts/p/7872308.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!