处理方法

1.在前台页面▲加上 。

2.在后台强制下转换编码格式

 protected void ExportToExcel_Click(object sender, EventArgs e)
    {
        BindExportData();
        string attachment = “attachment; filename = MarkdownPerformanceOfAllSkuReport.xls”;
        Response.ClearContent();
        Response.AddHeader(“content-disposition”, attachment);
        StringWriter stringWriter = new StringWriter();
        HtmlTextWriter htmlTextWriter = new HtmlTextWriter(stringWriter);
        ResultTable.RenderControl(htmlTextWriter);
        Response.ContentType = “application/ms-excel”;
        Response.Write(“<meta http-equiv=Content-Type content=\”text/html; charset=utf-8\”>”);
        Response.Write(stringWriter.ToString());
        Response.End();
    }

版权声明:本文为scottpei原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/scottpei/archive/2011/06/16/2082767.html