gpt4 book ai didi

c# - ASP.NET MVC 4,C# : how to Download File

转载 作者:行者123 更新时间:2023-11-30 19:59:03 34 4
gpt4 key购买 nike

我之前已经将一个文件上传到我的数据库中,现在我想从我的数据库中下载该文件。

谁能告诉我怎么做?我是 C# 和 ASP.NET MVC 的新手。

Controller :

public ActionResult Details(string id = null)
{
Assignment assignment = db.Assignments.Find(id);

if (assignment == null)
{
return HttpNotFound();
}

return View(assignment);
}

型号:

public string AssignmentID { get; set; }
public Nullable<System.DateTime> SubmissionDate { get; set; }
public string Status { get; set; }
[Range(0,100, ErrorMessage="Only Value between 0-100 is accepted.")]
public Nullable<decimal> Mark { get; set; }
public string Comments { get; set; }
public byte[] FileLocation { get; set; }

查看:

<div class="display-label">
<%: Html.DisplayNameFor(model => model.FileLocation) %>
</div>
<div class="display-field">
<%: Html.DisplayFor(model => model.FileLocation) %>
</div>

最佳答案

因为你有一个 Streambyte[] 或一个文件的路径,你可以使用 File() 方法来自 Controller 基类,并将此文件响应为 ActionResult,例如:

public ActionResult Details(string id = null)
{
Assignment assignment = db.Assignments.Find(id);

if (assignment == null)
{
return HttpNotFound();
}

return File(assigment.FileLocation, "content/type", "fileName.extension");
}

请记住获取正确的content-type 并添加具有正确扩展名的fileName

关于c# - ASP.NET MVC 4,C# : how to Download File,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25165649/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com