码迷,mamicode.com
首页 > 其他好文 > 详细

设置GridView、DataGrid 以提供thead、tbody等标签

时间:2016-05-01 23:10:37      阅读:664      评论:0      收藏:0      [点我收藏+]

标签:

一、简述

  做项目用到了GridView、DataGrid(原谅公司,既然还用DataGrid =》 又从以前的项目中搬代码 - - !!! )。然后想为其增加 thead、tbody 好兼容JQuery的js插件。

二、内容

GridView代码

        GridView1.DataSource = fakeDataTable;
        GridView1.DataBind();
        GridView1.HeaderRow.TableSection = TableRowSection.TableHeader;

技术分享

 DataGrid代码

        dataGrid1.DataSource = fakeDataTable;
        dataGrid1.DataBind();
        Table table = dataGrid1.Controls[0] as Table;
        table.Rows[0].TableSection = TableRowSection.TableHeader;
        

技术分享

 

设置GridView、DataGrid 以提供thead、tbody等标签

标签:

原文地址:http://www.cnblogs.com/kongbailingluangan/p/5451396.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!