博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
最新的导出文档方法
阅读量:5976 次
发布时间:2019-06-20

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

// 最新的导出文档方法 说明:参数 dt 可以是Html字符串 public void ExportToExcel(string FieldType, string FileName, string dt)        {            System.Web.HttpContext.Current.Response.Charset = "utf-8";            System.Web.HttpContext.Current.Response.AppendHeader("Content-Disposition", "attachment;filename=" + HttpUtility.UrlEncode(FileName, System.Text.Encoding.UTF8).ToString());            System.Web.HttpContext.Current.Response.ContentEncoding = System.Text.Encoding.GetEncoding("GB2312");            System.Web.HttpContext.Current.Response.ContentType = FieldType;            StringWriter tw = new StringWriter();            System.Web.HttpContext.Current.Response.Output.Write(dt);            System.Web.HttpContext.Current.Response.Flush();            System.Web.HttpContext.Current.Response.End();        }

 

转载于:https://www.cnblogs.com/ly77461/p/6934634.html

你可能感兴趣的文章
浅谈关于特征选择算法与Relief的实现
查看>>
Android 通过局域网udp广播自动建立socket连接
查看>>
Python按行输出文件内容具体解释及延伸
查看>>
mybatis-spring 项目简介
查看>>
FreeRTOS 任务优先级分配方案
查看>>
Wireshark抓取RTP包,还原语音
查看>>
Behavioral模式之Memento模式
查看>>
Work Management Service application in SharePoint 2016
查看>>
Dos 改动IP 地址
查看>>
CSS3鼠标悬停图片上浮显示描述代码
查看>>
URL编码总结
查看>>
JDBC 4.2 Specifications 中文翻译 -- 第九章 连接
查看>>
es6的Proxy(代理)
查看>>
CentOs 7.2下ELK日志分析系统搭建
查看>>
Eclipse Modeling Framework, 2nd Edition. (EMF)学习笔记(一)——EMF介绍
查看>>
Laravel 源码解读:php artisan make:auth
查看>>
2017-06-08 前端日报
查看>>
[转]json2.js 源码解读
查看>>
使用 python-nmap 进行端口扫描
查看>>
[译]高性能浏览器网络(第九章)--HTTP简史
查看>>