主頁 > 知識(shí)庫 > ASP.NET使用GridView導(dǎo)出Excel實(shí)現(xiàn)方法

ASP.NET使用GridView導(dǎo)出Excel實(shí)現(xiàn)方法

熱門標(biāo)簽:外呼電銷機(jī)器人軟件 400電話辦理最優(yōu)質(zhì) 河南語音外呼系統(tǒng)公司 威海電銷 400免費(fèi)電話怎么辦理 寧夏機(jī)器人電銷 t3出行地圖標(biāo)注怎么做 河北網(wǎng)絡(luò)回?fù)芡夂粝到y(tǒng) 關(guān)于宗地圖標(biāo)注技術(shù)規(guī)范

本文實(shí)例講述了ASP.NET使用GridView導(dǎo)出Excel實(shí)現(xiàn)方法。分享給大家供大家參考。具體實(shí)現(xiàn)方法如下:

復(fù)制代碼 代碼如下:
/// summary> 
/// 將DataTable數(shù)據(jù)導(dǎo)出到EXCEL,調(diào)用該方法后自動(dòng)返回可下載的文件流 
/// /summary> 
/// param name="dtData">要導(dǎo)出的數(shù)據(jù)源/param> 
public static void DataTable1Excel(System.Data.DataTable dtData) 

        System.Web.UI.WebControls.GridView gvExport = null; 
        // 當(dāng)前對話 
        System.Web.HttpContext curContext = System.Web.HttpContext.Current; 
        // IO用于導(dǎo)出并返回excel文件 
        System.IO.StringWriter strWriter = null; 
        System.Web.UI.HtmlTextWriter htmlWriter = null; 
 
        if (dtData != null) 
        { 
            // 設(shè)置編碼和附件格式 
            curContext.Response.ContentType = "application/vnd.ms-excel"; 
            curContext.Response.ContentEncoding = System.Text.Encoding.GetEncoding("gb2312"); 
            curContext.Response.Charset = "utf-8"; 
 
            // 導(dǎo)出excel文件 
            strWriter = new System.IO.StringWriter(); 
            htmlWriter = new System.Web.UI.HtmlTextWriter(strWriter); 
            // 為了解決gvData中可能進(jìn)行了分頁的情況,需要重新定義一個(gè)無分頁的GridView 
            gvExport = new System.Web.UI.WebControls.GridView(); 
            gvExport.DataSource = dtData.DefaultView; 
            gvExport.AllowPaging = false; 
            gvExport.DataBind(); 
 
            // 返回客戶端 
            gvExport.RenderControl(htmlWriter); 
            curContext.Response.Write("meta http-equiv=\"Content-Type\" content=\"text/html; charset=gb2312\" />" + strWriter.ToString()); 
            curContext.Response.End(); 
        } 

 
/// summary> 
/// 直接輸出Excel 
/// /summary> 
/// param name="dtData">/param> 
public static void DataTable2Excel(System.Data.DataTable dtData) 

          System.Web.UI.WebControls.DataGrid dgExport = null; 
      // 當(dāng)前對話 
      System.Web.HttpContext curContext = System.Web.HttpContext.Current; 
      // IO用于導(dǎo)出并返回excel文件 
      System.IO.StringWriter strWriter = null; 
      System.Web.UI.HtmlTextWriter htmlWriter = null; 
 
      if (dtData != null) 
      { 
        // 設(shè)置編碼和附件格式 
        curContext.Response.ContentType = "application/vnd.ms-excel"; 
        curContext.Response.ContentEncoding =System.Text.Encoding.UTF8; 
        curContext.Response.Charset = ""; 
                 
        // 導(dǎo)出excel文件 
        strWriter = new System.IO.StringWriter(); 
        htmlWriter = new System.Web.UI.HtmlTextWriter(strWriter); 
 
        // 為了解決dgData中可能進(jìn)行了分頁的情況,需要重新定義一個(gè)無分頁的DataGrid 
        dgExport = new System.Web.UI.WebControls.DataGrid();          
        dgExport.DataSource = dtData.DefaultView; 
        dgExport.AllowPaging = false; 
        dgExport.DataBind(); 
 
        // 返回客戶端 
        dgExport.RenderControl(htmlWriter);   
        curContext.Response.Write(strWriter.ToString()); 
        curContext.Response.End(); 
      } 
}

希望本文所述對大家的asp.net程序設(shè)計(jì)有所幫助。

您可能感興趣的文章:
  • ASP.NET4 GridView的四種排序樣式詳解
  • asp.net中的GridView分頁問題
  • asp.net gridview分頁:第一頁 下一頁 1 2 3 4 上一頁 最末頁
  • ASP.NET數(shù)據(jù)綁定之GridView控件
  • ASP.NET數(shù)據(jù)綁定GridView控件使用技巧
  • 在ASP.NET 2.0中操作數(shù)據(jù)之十一:基于數(shù)據(jù)的自定義格式化
  • 在ASP.NET 2.0中操作數(shù)據(jù)之十二:在GridView控件中使用TemplateField
  • 在ASP.NET 2.0中操作數(shù)據(jù)之十三:在DetailsView控件中使用TemplateField
  • 在ASP.NET 2.0中操作數(shù)據(jù)之十四:使用FormView 的模板
  • 在ASP.NET 2.0中操作數(shù)據(jù)之十五:在GridView的頁腳中顯示統(tǒng)計(jì)信息

標(biāo)簽:咸寧 賀州 廣元 淮北 樂山 固原 吉林 池州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《ASP.NET使用GridView導(dǎo)出Excel實(shí)現(xiàn)方法》,本文關(guān)鍵詞  ASP.NET,使用,GridView,導(dǎo)出,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《ASP.NET使用GridView導(dǎo)出Excel實(shí)現(xiàn)方法》相關(guān)的同類信息!
  • 本頁收集關(guān)于ASP.NET使用GridView導(dǎo)出Excel實(shí)現(xiàn)方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章