程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> 將ASP.NET頁面內的數據導出到Excel 或 Word中

將ASP.NET頁面內的數據導出到Excel 或 Word中

編輯:.NET實例教程


在以下按鈕單擊事件中實現:
private void btnMIME_Click(object sender, System.EventArgs e)
{
 BindData();
 Response.ContentType = "application/vnd.ms-Excel";
 Response.AddHeader("Content-Disposition", "inline;filename="
   +   HttpUtility.UrlEncode("下載文件.xls",Encoding.UTF8   )   );   
 

 //如果輸出為Word,修改為以下代碼
 //Response.ContentType = "application/ms-Word" 
 //Response.AddHeader("Content-Disposition", "inline;filename=test.doc") 
 StringBuilder sb=new StringBuilder(); 
 System.IO.StringWriter sw = new System.IO.StringWriter(sb);
 System.Web.UI.HtmlTextWriter hw = new System.Web.UI.HtmlTextWriter(sw);
 sb.Append("<Html><body>");
 dgShow.RenderControl(hw);
 sb.Append("</body></Html>"); 
 Response.Write(sb.ToString());
 Response.End();
}
注:1.若DataGrid中有按鈕列,則在導出前應先將其隱藏.
    2.若DataGrid有分頁,而又要打印所有數據的話就應先取消分頁.

http://pyt5208.cnblogs.com/archive/2006/07/10/447048.Html

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved