public FileResult download(string path, string filename)
{
byte[] fileBytes = System.IO.File.ReadAllBytes(Server.MapPath(path+"/"+filename));
return File(fileBytes, System.Net.Mime.MediaTypeNames.Application.Octet, filename);
}