zoukankan      html  css  js  c++  java
  • Ajax 导出Excel 方式

    1.使用iframe 加载 使用get方式

    <iframe id="comdownshow" height="0" width="0" frameborder="0" scrolling="no"></iframe>

    2.使用from表单组装 使用post方式

    jQuery.download = function (url, method, Name) {
    jQuery('<form action="' + url + '" method="' + (method || 'post') + '">' +
    '<input type="text" name="AddTimeStrat" value=""/>' +
    '<input type="text" name="AddTimeEnd" value=""/>' +
    '<input type="text" name="Name" value="' + Name + '"/>' +
    '</form>')
    .appendTo('body').submit().remove();
    };

    3.click对象触发

    function Getexcel() {

    //$("#comdownshow").attr("src", "/ModuleContext/EventAccount/Handler/EventAccountManage.ashx?type=ZHZXTJDOWN&AddTimeStrat=" + $("#txtAddTimeStrat").val() + "&AddTimeEnd=" + $("#txtAddTimeEnd").val() + "&Name=" + $("#txtName").val() + "&t=" + new Date().getTime());

    $.download("/ModuleContext/EventAccount/Handler/EventAccountManage.ashx?type=ZHZXTJDOWN","post","城管科");
    }

    4.服务端代码ashx

    string fileName = System.Web.HttpUtility.UrlEncode(name + ".xls");
    context.Response.ContentType = "application/vnd.ms-excel";
    context.Response.AddHeader("Content-Disposition", string.Format("attachment;filename={0}", fileName));
    context.Response.Clear();
    context.Response.BinaryWrite(ExportStaticDept(list).GetBuffer());

    //ExportStaticDept 生成excel => public MemoryStream ExportStaticDept .....

  • 相关阅读:
    Twitter网站架构学习笔记
    优化和架构之服务切分
    现代浏览器的工作原理
    可伸缩性原则
    图解:2013年百度搜索引擎工作原理
    构建的可伸缩性和达到的性能:一个虚拟座谈会
    提升可伸缩性的8项最佳实践
    Oracle odbc配置
    Oracle Error
    java与java web数组括号的不同
  • 原文地址:https://www.cnblogs.com/linsu/p/7418361.html
Copyright © 2011-2022 走看看