この方法を使用してファイルをダウンロードします
public FilePathResult downloadFile(string fileName)
{
//Download the spreadsheet
string path = "C:\\Users\\Johandk\\Documents\\Visual Studio 2010\\Projects\\FormValue\\" + fileName + ".xlsx";
return File(path, "application/vnd.ms-excel", fileName + ".xlsx");
}
ダウンロードの進行状況を確認したり、ダウンロードが完了したときに通知を受け取る方法はありますか?
ありがとう