一個將datagrid控件內容輸出到excel文件的demo. 生成EXCEL文件#region 生成EXCEL文件 //下面這行很重要,attachment 參數表示作為附件下載,您可以改成online在線打開 Response.AppendHeader(“Content-Disposition”,”attachment;filename=EOL_”+eformsn.Text+”.xls”); //Response.ContentType指定文件類型 可以為application/ms-excel,application/ms-word ,application/ms-txt,application/ms-html或其他瀏覽器可直接支持文檔 System.IO.StringWriter oStringWriter = new System.IO.StringWriter(); //將目標數據綁定到輸入流輸出
public void setToExcel()
{
// Response.Clear();
// Response.Buffer= true;
// Response.Charset=”utf-8″;
if (eformsn.Text==””)
{
DataGrid1.Visible=false;
Label1.Text=”要匯入EXCEL,請先輸入申請單號!”;
Label1.Visible=true;
}
else
{
dl.DataSource=DB(“query”, “select * from msi_eol_list_line where eformsn=”+eformsn.Text+” order by eformsn”).Tables[0].DefaultView;
dl.DataBind();
//filename=FileFlow.xls 指定輸出文件的名稱,注意其擴展名和指定文件類型相符,可以為:.doc .xls .txt .htm
Response.ContentEncoding=System.Text.Encoding.GetEncoding(“utf-8”);
Response.ContentType = “application/ms-excel”;
dl.EnableViewState = false;
System.Web.UI.HtmlTextWriter oHtmlTextWriter = new System.Web.UI.HtmlTextWriter(oStringWriter);
//this 表示輸出本頁,你也可以綁定datagrid,或其他支持obj.RenderControl()屬性的控件
dl.RenderControl(oHtmlTextWriter);
//this.DataBind.RenderControl(oHtmlTextWriter);
Response.Write(oStringWriter.ToString());
Response.End();
}
}
#endregion
將datagrid控件內容輸出到excel文件_asp.net技巧
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 將datagrid控件內容輸出到excel文件_asp.net技巧
相关推荐
-      对.net framework 反射的反思_asp.net技巧
-      .net3.5和vs2008中的asp.net ajax_asp.net技巧
-      使用asp.net ajax框架扩展html map控件_asp.net技巧
-      asp.net应用程序资源访问安全模型_asp.net技巧
-      photoshop初学者轻松绘制螺旋漩涡特效_photoshop教程
-      photoshop通道结合图层模式抠狗尾巴草_photoshop教程
-      web.config详解+asp.net优化_asp.net技巧
-      asp.net中多彩下拉框的实现_asp.net技巧