views:

52

answers:

2

I'm storing my files in the database and need to download a file when button clicked.
i can get the File content (Binary) in the action method. But how to return it as a file to the user?

+1  A: 
return new FileContentResult(byte[], contentType)
Keith Rousseau
or just `return File(...)`
Seth Petry-Johnson
+4  A: 
<%= Html.ActionLink("download file", "download") %>

and in your action:

public ActionResult Download() 
{
    byte[] contents = GetFileContentsFromDatabase();
    return File(contents, "image/jpeg")
}
Darin Dimitrov