asp.net mvc download file
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);
- Microsoft Word .doc application/msword
- Adobe Acrobat .pdf application/pdf
- Microsoft Powerpoint .ppt application开发者_开发问答/mspowerpoint
- Microsoft Excel .xls application/x-excel
- Text File .txt application/msword
try this:
FilePathResult result = new FilePathResult(doc.filepath, mime);
result.FileDownloadName = doc.title
return result;
精彩评论