主頁(yè) > 知識(shí)庫(kù) > 如何將數(shù)據(jù)綁到gridview然后導(dǎo)成excel

如何將數(shù)據(jù)綁到gridview然后導(dǎo)成excel

熱門標(biāo)簽:宿遷智能外呼系統(tǒng)排名 怎樣給陜西地圖標(biāo)注顏色 400電話辦理信任翰諾科技 ai電銷機(jī)器人對(duì)貸款有幫助嗎 福州人工智能電銷機(jī)器人加盟 廣州銷售外呼系統(tǒng)定制 地圖標(biāo)注多少錢一張 電銷機(jī)器人 數(shù)據(jù) 云狐人工智能電話機(jī)器人
復(fù)制代碼 代碼如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data .SqlClient ;
using System.Data ;

public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
String sqlconn = "Server=.; DataBase=db; Integrated Security=SSPI ";
string sql = "select top 10 * from table";

SqlConnection myConnection = new SqlConnection(sqlconn);// 創(chuàng)建數(shù)據(jù)庫(kù)連接實(shí)例

myConnection.Open(); //打開數(shù)據(jù)庫(kù)

SqlCommand myCommand = new SqlCommand(sql, myConnection);//創(chuàng)建sql的實(shí)例,執(zhí)行一個(gè)sql


SqlDataAdapter Adapter = new SqlDataAdapter();//創(chuàng)建一個(gè)sql數(shù)據(jù)適配器
Adapter.SelectCommand = myCommand;//屬性設(shè)置為 從數(shù)據(jù)源中檢索記錄


DataSet myDs = new DataSet(); //創(chuàng)建數(shù)據(jù)集實(shí)例
Adapter.Fill(myDs);//填充數(shù)據(jù)集

GridView1.DataSource = myDs.Tables[0].DefaultView;//
GridView1.DataBind();

// DataToExcel("測(cè)試的cxcel", GridView1);
myConnection.Close();//關(guān)閉數(shù)據(jù)庫(kù)連接
}
public void DataToExcel(string fileName, GridView myGridView)
{
//定義文檔類型、字符編碼
Response.Clear();
Response.Buffer = false;
//Response.Charset = "utf-8";
Response.Charset = "GB2312";
//下面這行很重要, attachment 參數(shù)表示作為附件下載,您可以改成 online在線打開
//filename=FileFlow.xls 指定輸出文件的名稱,注意其擴(kuò)展名和指定文件類型相符,可以為:.doc || .xls || .txt ||.htm
Response.AppendHeader("Content-Disposition", "attachment;filename=" + System.Web.HttpUtility.UrlEncode(fileName, System.Text.Encoding.UTF8) + ".xls");
Response.ContentEncoding = System.Text.Encoding.GetEncoding("utf-8");
//Response.ContentEncoding = System.Text.Encoding.GetEncoding("GB2312");
//Response.ContentType指定文件類型 可以為application/ms-excel || application/ms-word || application/ms-txt || application/ms-html || 或其他瀏覽器可直接支持文檔
Response.ContentType = "application/ms-excel";
this.EnableViewState = false;
//System.Globalization.CultureInfo myCItrad = new System.Globalization.CultureInfo("ZH-CN", true);
//定義一個(gè)輸入流
System.IO.StringWriter oStringWriter = new System.IO.StringWriter();
System.Web.UI.HtmlTextWriter oHtmlTextWriter = new System.Web.UI.HtmlTextWriter(oStringWriter);
//將目標(biāo)數(shù)據(jù)綁定到輸入流輸出
myGridView.RenderControl(oHtmlTextWriter);
Response.Write(oStringWriter.ToString());
Response.End();
}

//下面這個(gè)空語(yǔ)句一定要加,否則會(huì)出現(xiàn)“必須放在具有 runat=server 的窗體標(biāo)記內(nèi)。”的錯(cuò)誤
public override void VerifyRenderingInServerForm(Control control)
{
}

//點(diǎn)擊事件,生成excel
protected void Button1_Click(object sender, EventArgs e)
{
DataToExcel("測(cè)試的cxcel", GridView1);
}
}
您可能感興趣的文章:
  • WinForm中DataGridView添加,刪除,修改操作具體方法
  • WinForm DataGridView控件隔行變色的小例子
  • asp.net中的GridView分頁(yè)問(wèn)題
  • gridview生成時(shí)如何去掉style屬性中的border-collapse
  • C#使用RenderControl將GridView控件導(dǎo)出到EXCEL的方法
  • asp.net遍歷文件夾下所有子文件夾并綁定到gridview上的方法
  • asp.net讀取excel中的數(shù)據(jù)并綁定在gridview
  • Winform中GridView分組排序功能實(shí)現(xiàn)方法

標(biāo)簽:曲靖 焦作 綿陽(yáng) 宜春 新疆 黃南 延安 大興安嶺

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