博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
GridView導出Excel 解決亂碼問題
阅读量:6610 次
发布时间:2019-06-24

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

Response.Clear();        Response.Charset = "gb2312";        Response.Buffer = true;        Response.AddHeader("content-disposition", "attachment;filename=" + HttpUtility.UrlEncode("用户信息表.xls").ToString());        Response.ContentType = "application/ms-excel";        Response.Write("
"); System.IO.StringWriter sw = new System.IO.StringWriter(); HtmlTextWriter hw = new HtmlTextWriter(sw); GridView1.AllowPaging = false; Bind(); this.GridView1.RenderControl(hw); Response.Write(sw.ToString()); Response.Write(""); Response.Flush(); Response.End();

 

转载于:https://www.cnblogs.com/siri/p/3225077.html

你可能感兴趣的文章
debug命令
查看>>
Android SQLite详解
查看>>
Spark技术在京东智能供应链预测的应用
查看>>
SparkR-Install
查看>>
Tagger: Deep Unsupervised Perceptual Grouping
查看>>
Intellij idea 项目目录设置 与包的显示创建
查看>>
HDU 1016:Prime Ring Problem
查看>>
Impala的安装(含使用CM安装 和 手动安装)(图文详解)
查看>>
论程序猿的社会地位
查看>>
Android 布局自适应屏幕
查看>>
ionic 进入二级目录以后隐藏底部导航栏(tabs)
查看>>
android: 在APP中显示高德地图SDK
查看>>
js11--js与C++、java异同
查看>>
Android下载网络图片并缓存
查看>>
自然语言交流系统 phxnet团队 创新实训 项目博客 (三)
查看>>
Unity游戏小地图生成
查看>>
【3】JVM-OutOfMemory异常重现
查看>>
【Netty】codec框架
查看>>
NHibernate 集合映射深入 (第五篇) <set>,<list>,<map>,<bag>
查看>>
禁止右键,禁止选中,禁止网页复制的Js代码
查看>>