国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > .NET > 正文

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

2024-07-10 13:27:06
字體:
來源:轉載
供稿:網(wǎng)友

復制代碼 代碼如下:


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ù)庫連接實例

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

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


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


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

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

// DataToExcel("測試的cxcel", GridView1);
myConnection.Close();//關閉數(shù)據(jù)庫連接
}
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 指定輸出文件的名稱,注意其擴展名和指定文件類型相符,可以為:.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);
//定義一個輸入流
System.IO.StringWriter oStringWriter = new System.IO.StringWriter();
System.Web.UI.HtmlTextWriter oHtmlTextWriter = new System.Web.UI.HtmlTextWriter(oStringWriter);
//將目標數(shù)據(jù)綁定到輸入流輸出
myGridView.RenderControl(oHtmlTextWriter);
Response.Write(oStringWriter.ToString());
Response.End();
}

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

//點擊事件,生成excel
protected void Button1_Click(object sender, EventArgs e)
{
DataToExcel("測試的cxcel", GridView1);
}
}

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 乌兰浩特市| 通州市| 瑞丽市| 龙门县| 梓潼县| 石家庄市| 梧州市| 中卫市| 土默特右旗| 吉林省| 肃南| 湄潭县| 志丹县| 浦北县| 远安县| 门源| 应城市| 固原市| 舞钢市| 武义县| 顺昌县| 勃利县| 汶川县| 体育| 乐安县| 湖南省| 邻水| 龙州县| 从化市| 景谷| 云阳县| 辽中县| 门源| 东明县| 长阳| 顺昌县| 闵行区| 沛县| 蒙城县| 开封县| 南雄市|