I'm using razor view to display the info and the info display perfectly but when I press the action link to download the file the action comes null from the view.
View:
@model Innovation_Internship.Models.Applicant
@Html.ActionLink("Download", "Download", "Admin", new { filename = Model.Resume })
Controller:
public ActionResult Download(string filename) <-- comes null
{
try
{
}
catch (Exception)
{
//download failed
//handle exception
throw;
}
}