1.如果你是在服务器上生成的Excel,可以直接Response.Redirect(“你生成的excel的地址”)。
2.如果你是字符串拼凑后的以html的形式转为excel
///
/// 导出Excel
///
///
///
protected void Button1_Click(object sender, EventArgs e)
{
Export("application/ms-excel", "Employee information.xls");
}
///
/// 定义导出Excel的函数
///
///
///
private void Export(string FileType, string FileName)
{
Response.Charset = "GB2312";
Response.ContentEncoding = System.Text.Encoding.UTF8;
Response.AppendHeader("Content-Disposition", "attachment;filename=" + HttpUtility.UrlEncode(FileName, Encoding.UTF8).ToString());
Response.ContentType = FileType;
this.EnableViewState = false;
StringWriter tw = new StringWriter();
HtmlTextWriter hw = new HtmlTextWriter(tw);
GridView1.RenderControl(hw);
// 这里GridView1可以换成你要渲染生成到excel的任意控件
Response.Write(tw.ToString());
Response.End();
}
3.如果你是已经有个Excel模板,要往里面填数据并下载,建议你去下个SpreadsheetGear
这个.net的组件扩展了很多针对excel的功能,比.net framework里提供的dll要强大很多。
不管你是要设置excel的格式,还是要进行下载功能,都可以解决。
请在百度里用 asp.net EXCEL下载 搜索. 很多答案。