我有一张id="table_results_header"
在ItemTemplate
. 是否有可能使用该rowdatabound
事件来调用封装gridview 的每一行上发生的该表的实例,以便我可以以编程方式操作样式?
if (e.Row.RowType == DataControlRowType.DataRow)
{
however_you_get_to_the_table.BackColor = System.Drawing.Color.Blue;
}
我真的很想知道这是否可以做到?
谢谢