I have a file browser application in MVC4 that allows you to download a selected file from a controller.
Currently, the FileResult returns the Stream of the file, al
You can disable the response buffer before you return the file result.
Response.BufferOutput = false; return File(fileStream, contentType);