中文(繁体)
將ContentType設定為“application/vnd.ms-excel”,表示以Excel方式輸出。程式碼如下:資料轉Excel.aspx: <%@ 頁面語言="C#" AutoEventWireup="true" CodeFile="DataToExcel.aspx.cs" Inherits="DataToExcel" %>
http://www.w3.org/1999/xhtml "> <頭runat =“伺服器”> <標題>資料到Excel標題> 頭> <正文>
公用部分類別 DataToExcel :System.Web.UI.Page { protected void Page_Load(物件發送者,EventArgs e) { if (!this.IsPostBack) { this.Response.ContentType = "application/vnd.ms-excel";字串ConnStr =“伺服器=本地主機;uid=sa;pwd=;資料庫=northwind”; SqlConnection Conn = new SqlConnection(ConnStr);康恩.Open(); string sqlcmd = "從員工中選擇姓氏、名字、職位、地址、城市"; SqlCommand cmd = new SqlCommand(sqlcmd, Conn); SqlDataAdapter 適配器 = new SqlDataAdapter(cmd);資料集 ds = new 資料集();適配器.Fill(ds); this.GridView1.DataSource = ds.Tables[0].DefaultView; this.GridView1.DataBind(); } } } http://ring1981.cnblogs.com/archive/2006/06/19/429919.html