博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
实现将Web页面的内容,Export To Excel的功能
阅读量:6300 次
发布时间:2019-06-22

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

None.gif
public
 
void
 ToExcel(System.Web.UI.Control ctl, 
string
 FileName)
ExpandedBlockStart.gifContractedBlock.gif    
dot.gif
{
InBlock.gif        HttpContext.Current.Response.Charset 
= "UTF-8"// 或UTF-7 以防乱码
InBlock.gif
        HttpContext.Current.Response.ContentEncoding = System.Text.Encoding.Default;
InBlock.gif        HttpContext.Current.Response.ContentType 
= "application/ms-excel";
InBlock.gif        HttpContext.Current.Response.AppendHeader(
"Content-Disposition""attachment;filename=" + "" + FileName + ".xls");
InBlock.gif        ctl.Page.EnableViewState 
= false;
InBlock.gif        System.IO.StringWriter tw 
= new System.IO.StringWriter();
InBlock.gif        System.Web.UI.HtmlTextWriter hw 
= new System.Web.UI.HtmlTextWriter(tw);
InBlock.gif        ctl.RenderControl(hw);
InBlock.gif        HttpContext.Current.Response.Write(tw.ToString());
InBlock.gif        HttpContext.Current.Response.End();
InBlock.gif        ctl.Page.EnableViewState 
= true;
ExpandedBlockEnd.gif    }
None.gif
原文:  
你可能感兴趣的文章
小程序客服收不到消息
查看>>
统计数据库大小的方法
查看>>
JavaScript高阶函数的应用
查看>>
又一次认识java(一) ---- 万物皆对象
查看>>
Day9 JSP
查看>>
Cesium调用Geoserver发布的 WMS、WFS服务
查看>>
知识图谱实战开发案例剖析(1)
查看>>
《设计模式之禅》--MVC框架
查看>>
spring boot 配置动态刷新
查看>>
线性时间排序
查看>>
Nginx负载均衡权重,ip_hash
查看>>
Linux 硬链接和软链接
查看>>
获取页面中更新删除传过来的id
查看>>
25 个超棒的 HTML5 & JavaScript 游戏引擎开发库
查看>>
多种方法实现Loading(加载)动画效果
查看>>
王立平-NGUI
查看>>
js监听 window.open 关闭事件
查看>>
Linux转发性能评估与优化-转发瓶颈分析与解决方式(补遗)
查看>>
C++编程学习52个经典网站 强力推荐
查看>>
Python中:self和__init__的含义 + 为何要有self和__init__
查看>>