Download Excel File Using C#
function download(strData, strFileName, "application/vnd.ms-excel") { var D = document, a = D.createElement("a"); strMimeType = strMimeType || "application/octet-stream"; if (navigator.msSaveBlob) { // IE10+ return navigator.msSaveBlob(new Blob([strData], { type: strMimeType }), strFileName); } /* end if(navigator.msSaveBlob) */ if ('download' in a) { //html5 A[download] if (window.URL) { a.href = window.URL.createObjectURL(new Blob([strData])); } else { a.href = "data:" + strMimeType + "," + encodeURIComponent(strData); } a.setAttribute("download", strFileName); ...