欢迎光临
我们一直在努力

将asp.net页面内的数据导出到excel 或 word中_asp.net技巧

建站超值云服务器,限时71元/月

在以下按钮单击事件中实现:
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

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 将asp.net页面内的数据导出到excel 或 word中_asp.net技巧
分享到: 更多 (0)