asp.net:将标题添加到标题中

时间:2010-07-21 09:24:17

标签: asp.net gridview header attributes

我将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等标签添加属性。怎么做?

感谢你的帮助和兴趣...

2 个答案:

答案 0 :(得分:1)

利用Attributes.Add

示例

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

答案 1 :(得分:0)

您可以通过将以下内容添加到子

来添加属性到标题行
grid.HeaderRow.Cells[2].Attributes.Add("xyz", "boom")