将ContentType设置为“application/vnd.ms-excel”,表示以Excel方式输出。
代码如下:
数据转Excel.aspx:
<%@ 页面语言="C#" AutoEventWireup="true" CodeFile="DataToExcel.aspx.cs" Inherits="DataToExcel" %>
<html xmlns=" http://www.w3.org/1999/xhtml ">
<头runat =“服务器”>
<标题>数据到Excel</标题>
</头>
<正文>
<form id="form1" runat="服务器">
<asp:GridView ID="GridView1" runat="服务器">
</asp:GridView>
</形式>
</正文>
</html>DataToExcel.aspx.cs
使用系统;
使用系统数据;
使用系统配置;
使用系统集合;
使用系统.Web;
使用 System.Web.Security;
使用 System.Web.UI;
使用 System.Web.UI.WebControls;
使用 System.Web.UI.WebControls.WebParts;
使用 System.Web.UI.HtmlControls;
使用 System.Data.SqlClient;
公共部分类 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