程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> excel-GridView數據導出到EXCEL

excel-GridView數據導出到EXCEL

編輯:編程綜合問答
GridView數據導出到EXCEL

我下面的這個方法導出的EXCEL亂碼,請各位幫忙看一下。

     public static void ExportExcel(string ExcelName, GridView tempFgrid)
    {
        StringBuilder sb = new StringBuilder();
        System.IO.StringWriter sw = new System.IO.StringWriter(sb);
        Page page = new Page();
        HtmlTextWriter htw = new HtmlTextWriter(sw);
        HtmlForm form = new HtmlForm();

        tempFgrid.EnableViewState = false;
        page.EnableEventValidation = false;

        page.DesignerInitialize();
        page.Controls.Add(form);
        form.Controls.Add(tempFgrid);
        page.RenderControl(htw);
        HttpContext.Current.Response.Clear();
        HttpContext.Current.Response.Buffer = true;

        HttpContext.Current.Response.ContentType = "application/vnd.ms-excel";
        HttpContext.Current.Response.AddHeader("Content-Disposition", "attachment;filename=" + ExcelName + ".xls");
        HttpContext.Current.Response.Charset = "UTF-8";
        HttpContext.Current.Response.ContentEncoding = System.Text.Encoding.UTF7;
        HttpContext.Current.Response.Write(sb.ToString());
        HttpContext.Current.Response.Flush();
        HttpContext.Current.Response.End();
    }

最佳回答:


請考慮一下文字編碼格式,只要雙方對應起來就可以

etywu
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved