0

如何阻止 ASP.NET 的 GridView 在每个 TH 上放置范围属性?我正在手动执行标题,这会造成干扰。

4

1 回答 1

2

其实是有办法的。您可以实现OnRowDataBoundorOnRowCreated事件并更改所有标题单元格的范围值。

protected void OnRowDataBound(object sender, GridViewRowEventArgs e)
{
    if (e.Row.RowType == DataControlRowType.Header)
    {
        foreach (TableCell cell in e.Row.Cells)
        {
            ((DataControlFieldHeaderCell)cell).Scope = TableHeaderScope.NotSet;   
        }
    }
}
于 2013-06-08T00:01:32.153 回答