博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
asp.net将内容导出到Excel,Table表格数据(html)导出EXCEL
阅读量:6294 次
发布时间:2019-06-22

本文共 1490 字,大约阅读时间需要 4 分钟。

代码:

   

1      ///  2         /// HTML Table表格数据(html)导出EXCEL 3         ///  4         /// 表头 5         /// 内容 6         /// 文件名称 7         public void ExportToExcel(string tableHeader,string tableContent,string sheetName) 8         { 9             string fileName = sheetName + DateTime.Now.ToString("yyyyMMddHHmmss");10             string tabData = htmlTable;11             if (tabData != null)12             {13                 StringWriter sw = new System.IO.StringWriter();14                 sw.WriteLine("
");15 sw.WriteLine("
");16 sw.WriteLine("
");17 sw.WriteLine(tableHeader);18 sw.WriteLine("
");19 sw.WriteLine(tableContent);20 sw.WriteLine("
");21 sw.WriteLine("");22 sw.WriteLine("");23 sw.Close();24 Response.Clear();25 Response.Buffer = true;26 Response.Charset = "UTF-8";27 //Response.Charset = "GB2312";28 //this.EnableViewState = false;29 Response.AddHeader("Content-Disposition", "attachment; filename=" + fileName + ".xls");30 Response.ContentType = "application/ms-excel";31 Response.ContentEncoding = System.Text.Encoding.GetEncoding("UTF-8");32 Response.Write(sw);33 Response.End();34 }35 }

 

转载地址:http://mqdta.baihongyu.com/

你可能感兴趣的文章
solr-4.10.4部署到tomcat6
查看>>
切片键(Shard Keys)
查看>>
淘宝API-类目
查看>>
virtualbox 笔记
查看>>
Git 常用命令
查看>>
驰骋工作流引擎三种项目集成开发模式
查看>>
SUSE11修改主机名方法
查看>>
jdk6.0 + Tomcat6.0的简单jsp,Servlet,javabean的调试
查看>>
Android:apk签名
查看>>
2(2).选择排序_冒泡(双向循环链表)
查看>>
MySQL 索引 BST树、B树、B+树、B*树
查看>>
微信支付
查看>>
CodeBlocks中的OpenGL
查看>>
短址(short URL)
查看>>
第十三章 RememberMe——《跟我学Shiro》
查看>>
mysql 时间函数 时间戳转为日期
查看>>
索引失效 ORA-01502
查看>>
Oracle取月份,不带前面的0
查看>>
Linux Network Device Name issue
查看>>
IP地址的划分实例解答
查看>>