• asp.netDataTable导出excel方法(2)


    上一篇文章提到看到同事导出excel的新方法,感觉比上一篇简单得多,所以想贴上来,与大家分享。

    在后台拼数据,都是用的htmltable标签的写法:

                string line = "text-align:center;border:thin solid windowtext;";//设置单元格格式
                StringBuilder content = new StringBuilder();
                content.Append("<table class='TableCssWithBorder'><tr>");//拼接一个html的table,把数据都写进table里
                content.Append("<td style='" + line + "' rowspan='2'><b>班级</b></td>");
                content.Append("<td style='" + line + "' colspan='2'><b>英语四级</b></td>");
                content.Append("<td style='" + line + "' colspan='2'><b>英语六级</b></td>");
                content.Append("<td style='" + line + "' colspan='2'><b>总计</b></td></tr>
    ");//标题
                for (int j = 0; j < dt.Rows.Count; j++)//添加数据,dt.Rows是datatable中的
                {
                    content.Append("<tr>");
                    content.Append("<td style='text-align:center;" + line + "'>" + dt.Rows[j]["Classes"] + "</td></tr>");//主要是格式,数据这些仅供参考。
                   
                    }    
                content.Append("</table>");
                string url = @"/UserReportFile/全部统计表/" + Guid.NewGuid().ToString() + "/";//url
                try
                {
                    string fileSavePath = context.Server.MapPath(url);
                    Directory.CreateDirectory(fileSavePath);
                    File.WriteAllText(fileSavePath + "sum.xls", content.ToString(), Encoding.UTF8);//写到文件里
                    context.Response.Write(url + "全部报名统计表.xls");//生成!
                }
                catch
                {
                    context.Response.Write("error");
                }
    

    前端的写法是

    if (data.indexOf("xls") >= 0) {
                                window.open("http://" + window.location.host + data);//用的传递数据的方法是ajax,对返回过来的数据进行判断,这样就能下载你导出的excel了
    

      真的很简单!

  • 相关阅读:
    Windows下安装Redmine
    【精华】Linux/GNOME的小技巧
    Perl简单教程
    【转载】手把手教你配置Windows2003集群(图)
    Windows 7 下如何配置PHP网站运行环境
    常用的PHP数据库操作方法(MYSQL版)
    CentOS上搭建Nginx + Mono 运行 asp.net
    【视频】Win2003 iis 流媒体设置
    【实用】OS X Lion restore Recovery HD Manually 手工创建 OS X Lion 恢复分区
    【小结】CentOS Linux操作系统的设置:
  • 原文地址:https://www.cnblogs.com/junshijie/p/5275171.html
Copyright © 2020-2023  润新知