Приложение написано на .net core MVC. В контроллере я создаю файл docx.
как мне сделать чтобы у пользователя по нажатию по кнопке он сохранялся?
Controler:
string path = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "C:/Install/ReportHealth.docx");
FileStream fs1 = new FileStream(path, FileMode.OpenOrCreate);
string file_type = "text/plain";
string file_name = "Отчет по оздоровлению_" + DateTime.Now.ToString("d") + ".docx";
return File(fs1, file_type, file_name);
JS
$.ajax({
url: "/Home/ReportDocx",
type: "POST",
contentType: "application/json;charset=UTF-8",
data: JSON.stringify(data),
dataType: "html",
success: function (result) {
},
error: function (errormessage) {
alert(errormessage.responseText);
}
});