Решил через использование XMLHttpRequest напрямую
var xhr = new XMLHttpRequest();
xhr.open('GET', 'Get133Report.aspx?date=' + date, true);
xhr.responseType = 'arraybuffer';
xhr.onload = function (e) {
var blob = new Blob([this.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();
HideProgress();
};
ShowProgress();
xhr.send();