博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
文件导出
阅读量:5264 次
发布时间:2019-06-14

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

string HEADER = "<html xmlns:x=\"urn:schemas-microsoft-com:office:excel\">" +

                                         "<meta http-equiv=Content-Type content=\"text/html; charset=\"gb2312\">";

 

string FileName = "SaleInfo";

            HttpContext.Current.Response.Charset = "UTF-8"; // 或UTF-7 以防乱码

            HttpContext.Current.Response.ContentEncoding = System.Text.Encoding.Default;

            HttpContext.Current.Response.ContentType = "application/ms-excel";

            HttpContext.Current.Response.AppendHeader("Content-Disposition", "attachment;filename=" + "" + FileName + ".xls");

            Response.Write(HEADER);

 

            Response.Write(@"<head><style  type='text/css'>td{border:black thin solid;}</style> </head>");

            HttpContext.Current.Response.Write(sb.ToString());

            HttpContext.Current.Response.End();

转载于:https://www.cnblogs.com/fang-beny/archive/2012/02/29/2373380.html

你可能感兴趣的文章
制作满天星空
查看>>
类和结构
查看>>
CSS3选择器(二)之属性选择器
查看>>
adidas crazylight 2018 performance analysis review
查看>>
typeset shell 用法
查看>>
python 之 循环语句
查看>>
心得25--JDK新特性9-泛型1-加深介绍
查看>>
[转]ceph网络通信模块_以monitor模块为例
查看>>
HDOJ 1754 I Hate It(线段树基本操作)
查看>>
latex tree
查看>>
安装NVIDIA驱动时禁用自带nouveau驱动
查看>>
HDU-1255 覆盖的面积 (扫描线)
查看>>
css3学习01
查看>>
【USACO】 奶牛会展
查看>>
ActiveMQ笔记之点对点队列(Point-to-Point)
查看>>
继承和多态
查看>>
Dijkstra+计算几何 POJ 2502 Subway
查看>>
修复IE不能执行JS的方法
查看>>
程序员究竟该如何提高效率zt
查看>>
希尔排序法(缩小增量法)
查看>>