Добрый день.
На сервере в событии Page_Load генерируется файл:
HttpResponse response = HttpContext.Current.Response;
response.ContentType = "application/vnd.ms-excel";
response.AddHeader("Content-Disposition", string.Format("attachment;filename={0}", "Отчет_133_" + ReportDate.ToShortDateString() + ".xls"));
response.Clear();
response.BinaryWrite(ms.GetBuffer());
fs.Close();
ms.Close();
response.End();
Если переходить на эту страницу обычным переходом браузера, то файл скачивается нормально. Но если получать его через jQuery AJAX, то файл возвращается поломанный.
Код Jquery:
$.ajax({
type: 'GET',
url: 'Get133Report.aspx?date=' + date,
beforeSend: function () {
ShowProgress();
},
complete: function () {
HideProgress();
},
//async: true,
success: function (response) {
//console.log(response);
var blob = new Blob([response], { type: 'application/vnd.ms-excel' });
var downloadUrl = URL.createObjectURL(blob);
var a = document.createElement("a");
a.href = downloadUrl;
a.download = "Отчет_133_"+date+".xls";
document.body.appendChild(a);
a.click();
}
});
Пробовал менять ContentType на application/octet-stream, не помогает.