2010-07-21 60 views
1

我改變了GridView的頭......與asp.net:添加屬性頭次

Sub MakeAccessible(ByVal grid As GridView) 
    If grid.Rows.Count > 0 Then 

     grid.UseAccessibleHeader = True 
     grid.HeaderRow.TableSection = TableRowSection.TableHeader 
     grid.HeaderRow.CssClass = "" 
     'grid.FooterRow.TableSection = TableRowSection.TableFooter 
    End If 
End Sub 

現在我需要的屬性添加到個標籤,如日XYZ =熱潮。如何做?

THX很多關於您的幫助和關心......

利用 Attributes.Add

回答

1

e.Row.Cells[1].Attributes.Add("class", "text") 
0

您可以通過添加以下添加添加屬性標題行給你的子公司

grid.HeaderRow.Cells[2].Attributes.Add("xyz", "boom")