Il s'agit d'un ContentType appelé "application/vnd.ms-excel", d'un logiciel Excel.
代码如下 :
DataToExcel.aspx :
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="DataToExcel.aspx.cs" Inherits="DataToExcel" %>
http://www.w3.org/1999/xhtml ">
classe partielle publique DataToExcel : System.Web.UI.Page
{
protected void Page_Load (expéditeur de l'objet, EventArgs e)
{
si (!this.IsPostBack)
{
this.Response.ContentType = "application/vnd.ms-excel" ;
chaîne ConnStr = "server=localhost;uid=sa;pwd=;database=northwind";
SqlConnection Conn = nouveau SqlConnection(ConnStr);
Conn.Open();
string sqlcmd = "sélectionner le nom, le prénom, le titre, l'adresse et la ville des employés" ;
SqlCommand cmd = new SqlCommand(sqlcmd, Conn);
Adaptateur SqlDataAdapter = new SqlDataAdapter(cmd);
DataSetds = new DataSet();
adaptateur.Fill(ds);
this.GridView1.DataSource = ds.Tables[0].DefaultView ;
this.GridView1.DataBind();
}
}
}
http://ring1981.cnblogs.com/archive/2006/06/19/429919.html