开发者

asp.net mvc download file

开发者 https://www.devze.com 2022-12-31 16:15 出处:网络
Hi Im having trouble downloading files using asp.net mvc y ycode is quite straight forward and seems to work for pdf\'s only. It does not work for other filetypes

Hi Im having trouble downloading files using asp.net mvc y ycode is quite straight forward and seems to work for pdf's only. It does not work for other filetypes

the code is below and the mime types I use for the documents are below.

return File(doc.filepath, mime, doc.title);
  1. Microsoft Word .doc application/msword
  2. Adobe Acrobat .pdf application/pdf
  3. Microsoft Powerpoint .ppt application开发者_开发问答/mspowerpoint
  4. Microsoft Excel .xls application/x-excel
  5. Text File .txt application/msword


try this:

    FilePathResult result = new FilePathResult(doc.filepath, mime);
    result.FileDownloadName = doc.title
    return result;
0

精彩评论

暂无评论...
验证码 换一张
取 消