gpt4 book ai didi

c# - 如何链接到 ASP.NET MVC 中的可下载文件?

转载 作者:太空狗 更新时间:2023-10-29 23:54:54 24 4
gpt4 key购买 nike

我是 ASP.NET MVC 的新手,我正在尝试链接到可下载文件(.zip、.mp3、.doc 等)。
我有以下 View :ProductName映射到:http://domain/ProductName
我有一个必须映射到 URL http://domain/ProductName/Product.zip

.zip 文件

问题

我应该将这个 .zip 文件放在 MVC 文件夹结构中的什么位置?
如何在 MVC 中添加指向此 .zip 文件的链接?是否有 Url.* 方法可以执行此操作?

最佳答案

您可以使用 FilePathResult 或 Controller.File 方法。

protected internal virtual FilePathResult File(string fileName, string contentType, string fileDownloadName) {
return new FilePathResult(fileName, contentType) { FileDownloadName = fileDownloadName };
}

示例代码操作方法。

public ActionResult Download(){
return File(fileName,contentType,downloadFileName);
}

希望这段代码。

关于c# - 如何链接到 ASP.NET MVC 中的可下载文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1865122/

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