博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C# .net 导出
阅读量:5355 次
发布时间:2019-06-15

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

///         /// 导出        ///         /// 
/// public void ExportData() { string strTotal = ""; string title = ""; string meta = "
"; StringBuilder builder = new StringBuilder(); builder.Append(meta); builder.Append("
"); builder.Append("
"); builder.Append("
"); //builder.AppendFormat("
"); //builder.AppendFormat("
"); builder.AppendFormat("
"); //builder.AppendFormat("
"); builder.AppendFormat("
"); builder.AppendFormat("
"); builder.AppendFormat("
"); builder.Append("
"); builder.Append(strTotal); builder.Append("
"); builder.Append(title + "(" + DateTime.Now.ToString("yyyy-MM-dd") + ")"); builder.Append("
ID "); //builder.AppendFormat(" 动ID 名称 名人ID "); builder.AppendFormat(" 联方式
"); System.Web.HttpContext.Current.Response.Clear(); HttpContext.Current.Response.AppendHeader("Content-Disposition", "attachment;filename=" + HttpUtility.UrlEncode(title + "" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xls", Encoding.UTF8)); HttpContext.Current.Response.Charset = "UTF-8"; HttpContext.Current.Response.ContentEncoding = System.Text.Encoding.Default; HttpContext.Current.Response.ContentType = "application/ms-excel"; HttpContext.Current.Response.Write("
"); // 把文件流发送到客户端 System.Web.HttpContext.Current.Response.Write(builder.ToString()); // 停止页面的执行 System.Web.HttpContext.Current.Response.End(); }

 

转载于:https://www.cnblogs.com/TNSSTAR/archive/2013/01/09/2853038.html

你可能感兴趣的文章
As-If-Serial 理解
查看>>
洛谷P1005 矩阵取数游戏
查看>>
在Silverlight中使用HierarchicalDataTemplate为TreeView实现递归树状结构
查看>>
无线通信基础(一):无线网络演进
查看>>
关于python中带下划线的变量和函数 的意义
查看>>
linux清空日志文件内容 (转)
查看>>
Servlet接收JSP参数乱码问题解决办法
查看>>
Ajax : load()
查看>>
MySQL-EXPLAIN执行计划Extra解释
查看>>
Zookeeper概述
查看>>
Linux自己安装redis扩展
查看>>
luoguP3414 SAC#1 - 组合数
查看>>
图片点击轮播(三)-----2017-04-05
查看>>
直播技术细节3
查看>>
《分布式服务架构:原理、设计于实战》总结
查看>>
java中new一个对象和对象=null有什么区别
查看>>
字母和数字键的键码值(keyCode)
查看>>
IE8调用window.open导出EXCEL文件题目
查看>>
Spring mvc初学
查看>>
VTKMY 3.3 VS 2010 Configuration 配置
查看>>