Office 2007 打开 C# VS2005 导出的Excel时报错:单元格数据太大 Office 2003打开正常 的解决办法...

本文介绍了一种解决导出Excel文件时出现乱码的方法。通过调整编码设置,从UTF7改为GB2312,成功避免了乱码问题的发生。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

经测试,有可能是这个问题:

导出Excel的代码:

 

    private void ExportToExcel()
    {
        Response.Clear();
        System.Web.HttpContext curContext 
= System.Web.HttpContext.Current;
        Response.AddHeader(
"content-disposition""attachment;filename=Test.xls");
        
//Response.Charset = "UTF-8";//设置字符集
        
//curContext.Response.ContentEncoding = System.Text.Encoding.UTF8;//设置编码集
        Response.Charset = "utf-8";
        Response.ContentEncoding 
= System.Text.Encoding.GetEncoding("GB2312");
        
//Response.ContentType = "application/vnd.xls";
        Response.ContentType = "application/ms-excel";
        
//ms-excel
        System.IO.StringWriter stringWrite = new System.IO.StringWriter();
        System.Web.UI.HtmlTextWriter htmlWrite 
= new HtmlTextWriter(stringWrite);
        
//写到Excel的数据不用分页
      
        GridView1.RenderControl(htmlWrite);
        Response.Write(stringWrite.ToString());
//向客户端写数据
        Response.End();

        GridView1.AllowSorting 
= true;
        
//恢复分页       
    }

 如果将 Response.ContentEncoding = System.Text.Encoding.GetEncoding("GB2312");

设置成 UTF7则会出现题目中的问题 导致打开是乱码,改成GB2312就正常。

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值