我有一個控制器和下載文件的方法。沒有代碼,我需要的只是去這個鏈接:從我的項目中下載文件
http://localhost:1186/Content/MyFolder/file1.exe
和文件被下載。
我試着用代碼來做到這一點是這樣的:
Response.Redirect(Server.MapPath("~\\Content\\MyFolder\\file1.exe"));
但斷點通過此行並沒有任何反應。我認爲問題是我正在使用Server.MapPath,但我還會如何做到這一點?
Server.Ma pPath返回資源的物理路徑,請嘗試Response.Redirect(「〜\\ Content \\ MyFolder \\ file1.exe」); – MSUH
此相關的有關下載使用MVC文件可能是有用的,這樣的問題,http://stackoverflow.com/questions/5826649/returning-a-file-to-view-download-in-mvc – Despertar