老周的胡..

世事无绝对,另有新情趣。

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

   .....................
   ......................
   DataGrid1.DataBind();
    数据绑定!


   Response.Clear();
   Response.Buffer=true;
   Response.ContentType="application/vnd.ms-excel";
   Response.Charset="";
   this.EnableViewState=false;

   System.IO.StringWriter sw = new StringWriter();
   HtmlTextWriter  htw=new  HtmlTextWriter(sw);
   DataGrid1.RenderControl(htw);
   Response.Write(sw.ToString());
   Response.End();

posted on 2006-05-25 15:56  老周  阅读(339)  评论(0编辑  收藏  举报