我将gridview标题更改为... with
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
现在我需要为th xyz = boom等标签添加属性。怎么做?
感谢你的帮助和兴趣...
答案 0 :(得分:1)
利用Attributes.Add
示例
e.Row.Cells[1].Attributes.Add("class", "text")
答案 1 :(得分:0)
您可以通过将以下内容添加到子
来添加属性到标题行grid.HeaderRow.Cells[2].Attributes.Add("xyz", "boom")