一個將datagrid控件Internal容輸到excel文件의 데모.
生成EXCEL文件#region 生成EXCEL文件
공공 무효 setToExcel()
{
// 응답.Clear();
// 응답.버퍼= true;
// Response.Charset="utf-8";
if (eformsn.Text=="")
{
DataGrid1.Visible=false;
Label1.Text="EXCEL, 請先輸入申請單號!";
Label1.Visible=true;
}
또 다른
{
dl.DataSource=DB("query", "msi_eol_list_line에서 * 선택, 여기서 eformsn="+eformsn.Text+" eformsn별 순서").Tables[0].DefaultView;
dl.DataBind();
//하단 這行很重要,attachment 參數表示작품為附件下載,您可以改成온라인온라인打開
//filename=FileFlow.xls 문서의 이름을 정하고, 의도한 대로 확장 이름을 지정하고 문서에서 .xls .txt .htm
Response.AppendHeader("Content-Disposition","attachment;filename=EOL_" +eformsn.Text+".xls");
Response.ContentEncoding=System.Text.Encoding.GetEncoding("utf-8");
//Response.ContentType指정문件類型 可以為application/ms-excel,application/ms-word ,application/ms-txt,application/ms-html或其他瀏覽器可直接支持文檔
Response.ContentType = "응용 프로그램/ms-excel";
dl.EnableViewState = 거짓;
System.IO.StringWriter oStringWriter = new System.IO.StringWriter();
System.Web.UI.HtmlTextWriter oHtmlTextWriter = new System.Web.UI.HtmlTextWriter(oStringWriter);
//將目標數據綁定到輸入流輸流
//이것은 表示輸出本頁,你也可以綁定datagrid,或其他支持obj.RenderControl()屬性控件
dl.RenderControl(oHtmlTextWriter);
//this.DataBind.RenderControl(oHtmlTextWriter);
Response.Write(oStringWriter.ToString());
응답.끝();
}
}
#endregion