文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>DATATABLE、GRIDVIEW內容导出到EXCEL表中

DATATABLE、GRIDVIEW內容导出到EXCEL表中

时间:2010-09-07  来源:明月幾時有

几个实例,其中DATATABLE导出时也是先绑定GRIDVIEW再从其中导出。
例一:
   DataTable dt = db.GetData(strTMP);

       HttpContext.Current.Response.AppendHeader("Content-Disposition","attachment;filename=Excel.xls");
       HttpContext.Current.Response.Charset ="UTF-8";   
       HttpContext.Current.Response.ContentEncoding =System.Text.Encoding.Default;
       HttpContext.Current.Response.ContentType ="application/ms-excel";
       System.IO.StringWriter  tw = new System.IO.StringWriter() ;
       System.Web.UI.HtmlTextWriter hw = new System.Web.UI.HtmlTextWriter (tw);

       GridView GV = new GridView();//一个无分页的GridView
       GV.DataSource = dt;
       GV.AllowPaging = false;
       GV.DataBind();
       GV.RenderControl(hw);
       HttpContext.Current.Response.Write(tw.ToString());
       HttpContext.Current.Response.End();

 

例二:
   

   HttpContext curContext = System.Web.HttpContext.Current;
        System.IO.StringWriter strWriter = new StringWriter();
        System.Web.UI.HtmlTextWriter htmlWriter = new HtmlTextWriter(strWriter);
        curContext.Response.ContentType = "application/vnd.ms-excel";
        curContext.Response.ContentEncoding = Encoding.GetEncoding("GB2312");
        curContext.Response.Charset = "GB2312";

        GridView GV = new GridView();//一个无分页的GridView
        GV.DataSource = DT;//绑定DATATABLE
        GV.AllowPaging = false;
        GV.DataBind();
        GV.RenderControl(htmlWriter);
        curContext.Response.Write(strWriter.ToString());
        curContext.Response.End();

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载