Monday, September 22, 2014

Download file ASP.NET MVC 4 C#

để viết phần download file trong  ASP.NET MVC 4 C# bạn cần viết 1 action trong controller và trên view bạn chỉ cần gọi action đó.


Controllers

public FileResult Download() 

 byte[] fileBytes = System.IO.File.ReadAllBytes("c:\folder\myfile.ext"); 
 string fileName = "myfile.ext"; return File(fileBytes,  System.Net.Mime.MediaTypeNames.Application.Octet, fileName); 
}

View
trong view thêm actionLink

@Html.ActionLink("download","Download","Home")

No comments: