I have the following code in my controller:
public ActionResult downloadFile()
{
try
{
FileStream fs = new FileStream(helper.getFileLoc(), FileMode.Open);
string mimeType = "Text File";
FileStreamResult f = File(fs, mimeType, "myFile.txt");
return f;
}
catch
{
return PartialView("_errorFile");
}
}
I want to download a file, but if there is an exception I want to render the partial view in my errors div.
The problem is that if I use @Html.ActionLink to call the method I get the file to download right, but if there's an exception I get redirected to a page containing only the partial view.
On the other hand, if I use @Ajax.ActionLink, I get the exception handled correctly in that div, but if there isn't an exception I get the text inside the file instead of a download.
Is there any way to do what I am trying to do here?