asp.net mvc下载文件

2018-11-07  本文已影响0人  令狐铁蛋
// 前端代码
<a href="/file/download?fileId=4d94ccd2-28bd-4c4c-acfb-5e0e8480e86b">下载</a>

// asp.net mvc 代码
public ActionResult Download(string fileId)
{
    // 通常情况下,附件存放路径是记录的配置文件中的
    string dirpath = "d://attachment/";

    // 通常情况下,文件名字是记录在数据库中的,附件上传时记录
    string filename = "08c24a84-d39f-47d3-8c02-465def1bb325.xlsx";

    // 通常情况下,contentType也是附件上传时记录在数据库中
    string contentType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";

    return File(System.IO.File.ReadAllBytes(dirpath + filename), contentType, filename);
}
上一篇 下一篇

猜你喜欢

热点阅读