zoukankan      html  css  js  c++  java
  • 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 为返回生成在服务器的文件路径
                        }
                    });
                })

  • 相关阅读:
    wince5.0 key
    CSS基础知识思维导图xmind
    切图
    头部标签集
    List和Set的区别
    PicGo + Gitee 实现 Markdown 图床
    GitHub Pages 与 Gitee Pages 上的 Jekyll
    Agile, CI/CD,DevOps
    你还不了解DevOps? 看这篇就够了
    DevOps实践心得
  • 原文地址:https://www.cnblogs.com/SuperLiangG/p/4335748.html
Copyright © 2011-2022 走看看