Ajax调用NPOI导出Excel报表

$("#btnExcel").click(function () {
                $.ajax({
                    url: "../ashx/Report.ashx",
                    type: "post",
                    dataType: "text",
                    data: { RequestType: "ReviewReportExportExcel",
                        Site: $("#ddlSite").val(),
                        PerformanceType: $("#ddlPerformanceType").val(),
                        Period: getPeriod(),
                        OrgIDs: $("#hidDept").val(),
                        UserSapIDs: $("#hidUser").val(),
                        ProcType: $("#ddlProcType").val(),
                        Status: $("#ddlFormStatus").val(),
                        IsContainsLeavedStaff: $("#chkContainsLeavedStaff").is(':checked') ? "1" : "0",
                        LeavedBeginDate: $("#txtLeavedBeginDate").val(),
                        LeavedEndDate: $("#txtLeavedEndDate").val(),
                        CurtureID: curtureID,
                        IsPage: "0",
                        PageSize: pageSize,
                        PageIndex: "1"
                    },
                    success: function (data) {
                        window.location.replace("../" + data);  //data 为返回生成在服务器的文件路径
                    }
                });
            })

原文地址:https://www.cnblogs.com/SuperLiangG/p/4335748.html