主页 > 知识库 > asp.net导出Excel显示中文乱码的解决方法

asp.net导出Excel显示中文乱码的解决方法

热门标签:山东防封电销卡办理套餐 泰州手机外呼系统软件 地图标注位置多的钱 杭州智能电话机器人 济源人工智能电话机器人价格 内蒙古智能电销机器人哪家强 厦门四川外呼系统 怎样在地图标注消火栓图形 百度地图标注点击事件

复制代码 代码如下:

  protected void btnExcel_Click(object sender, EventArgs e)
    {
        ListbUFlow.Model.orderhistory> orderlist = dal.GetOrderList2("");
        string filename = "3g流量网龄升级计划用户表";
        string name1 = filename;
        string bname = Common.MyRequest.GetBrowserName().ToLower();
        if (bname.Contains("firefox"))
        {
        }
        else if (bname.Contains("ie"))
        {
            filename = HttpUtility.UrlEncode(filename, System.Text.Encoding.UTF8);
        }
        else
        {
            filename = HttpUtility.UrlEncode(filename, System.Text.Encoding.UTF8);
        }

        HttpResponse resp = System.Web.HttpContext.Current.Response;
        resp.Charset = "utf-8";
        resp.Clear();
        resp.AppendHeader("Content-Disposition", "attachment;filename=" + filename + ".xls");
        resp.ContentEncoding = System.Text.Encoding.UTF8;

        resp.ContentType = "application/ms-excel";
        string style ="meta http-equiv=\"content-type\" content=\"application/ms-excel; charset=utf-8\"/>"+ "style> .table{ font: 9pt Tahoma, Verdana; color: #000000; text-align:center;  background-color:#8ECBE8;  }.table td{text-align:center;height:21px;background-color:#EFF6FF;}.table th{ font: 9pt Tahoma, Verdana; color: #000000; font-weight: bold; background-color: #8ECBEA; height:25px;  text-align:center; padding-left:10px;}/style>";
        resp.Write(style);
        //resp.Write(ExportTable(list));
        resp.Write("table class='table'>tr>th>" +"手机"+ "/th>th>" + "渠道" + "/th>th>" +"时间" + "/th>/tr>");
        //dbVideoList = (ListsubShiyongModel>)Session["dbVideoList"];
        foreach (bUFlow.Model.orderhistory model in orderlist)
        {
            resp.Write("tr>td>" + model.phone + "/td>");
            resp.Write("td>" + model.qudao + "/td>");
            resp.Write("td>" + model.tm + "/td>");
            resp.Write("/tr>");
        }
        resp.Write("table>");

        resp.Flush();
        resp.End();
    }

 


  需要注意的是编码的问题,在输出的时候,最好加上以下语句:
 
复制代码 代码如下:

meta http-equiv="content-type" content="application/ms-excel; charset=gb2312"/>

您可能感兴趣的文章:
  • .net从服务器下载文件中文名乱码解决方案
  • .NET中文乱码的解决方法分享
  • asp.net Cookie值中文乱码问题解决方法
  • asp.net url传递后地址栏乱码(中文超过两个汉字)
  • ASP.NET中Request.Form中文乱码的解决方法
  • asp.net URL中包含中文参数造成乱码的解决方法
  • asp.net 中文字符串提交乱码的解决方法
  • js与ASP.NET 中文乱码问题
  • asp.net下cookies的丢失和中文乱码
  • .Net获取URL中文参数值的乱码问题解决方法总结

标签:喀什 百色 朝阳 台州 洛阳 朔州 新乡 周口

巨人网络通讯声明:本文标题《asp.net导出Excel显示中文乱码的解决方法》,本文关键词  asp.net,导出,Excel,显示,中文,;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 下面列出与本文章《asp.net导出Excel显示中文乱码的解决方法》相关的同类信息!
  • 本页收集关于asp.net导出Excel显示中文乱码的解决方法的相关信息资讯供网民参考!
  • 推荐文章