Asp.NET Tutorials
Home > Asp.Net开发 > ASP.NET 2.0中GridView无限层复杂表头的实现

Hot archives

ASP.NET 2.0中GridView无限层复杂表头的实现

author: 孟宪会
From :csdn

实现方法就是

给单元格填充我们想要的格式代码。

C#
<%@ Page Language="C#" AutoEventWireup="true" %>
http://www.w3.org/1999/xhtml">

 


 
          Width="600px" BackColor="#000000" BorderWidth="0" OnRowDataBound="GridView1_RowDataBound"
      OnRowCreated="GridView1_RowCreated">
   

 


VB.NET
<%@ Page Language="VB" AutoEventWireup="true" %>
http://www.w3.org/1999/xhtml">

 


 

          Width="600px" BackColor="#000000" BorderWidth="0" OnRowDataBound="GridView1_RowDataBound"
      OnRowCreated="GridView1_RowCreated">
   

 


 
Add by : Huobazi (2006-10-02:11:01)