1

我有一张id="table_results_header"ItemTemplate. 是否有可能使用该rowdatabound事件来调用封装gridview 的每一行上发生的该表的实例,以便我可以以编程方式操作样式?

if (e.Row.RowType == DataControlRowType.DataRow)
{
    however_you_get_to_the_table.BackColor = System.Drawing.Color.Blue;
}

我真的很想知道这是否可以做到?

谢谢

4

1 回答 1

2

是的,您可以使用FindControl

if (e.Row.RowType == DataControlRowType.DataRow)
{
  ((Table)e.Row.FindControl("table_results_header")).BackColor = Color.Blue;
}
于 2012-10-02T22:14:06.713 回答