码迷,mamicode.com
首页 > Web开发 > 详细

C#将网页数据导出Excel时编码设置

时间:2014-06-27 13:44:24      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   http   tar   

bubuko.com,布布扣
 1         public void DGToExcel()
 2         {
 3             Response.ClearContent();
 4             Response.Charset = "GB2312";//内容编码
 5             Response.ContentType = "application/ms-excel";
 6             Response.ContentEncoding = System.Text.Encoding.GetEncoding("GB2312");//内容编码
 7             Response.AddHeader("content-disposition", "attachment;filename=" + HttpUtility.UrlEncode("维修零件汇总" + System.DateTime.Now.ToShortDateString(), System.Text.Encoding.GetEncoding("UTF-8")) + ".xls");//导出文件名编码
 8             System.IO.StringWriter sw = new System.IO.StringWriter();
 9             HtmlTextWriter htw = new HtmlTextWriter(sw);
10             Gri_ViewSumFeeByYG.RenderControl(htw);
11             Response.Write(GetGridTableHtml(Gri_ViewSumFeeByYG));//将数据源按HTML格式写出
12             Response.End();
13         }
View Code

一般来讲,excel导出的文字编码只要两种就可以了:GB2312、UTF-8。

如果导出时出现乱码,可是尝试一下用别的编码。

另外值得注意的是,各个浏览器的兼容不一样,有可能在IE导出是文件名不是乱码,但是在火狐上面导出文件名就是乱码了。

C#将网页数据导出Excel时编码设置,布布扣,bubuko.com

C#将网页数据导出Excel时编码设置

标签:style   class   blog   code   http   tar   

原文地址:http://www.cnblogs.com/work-at-home-helloworld/p/ExportExcel.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!