According to the VS 2008 properties for a GridView:
- DataBound fires after the control has been databound.
- RowDataBound fires after a row has been databound.
If I want to manipulate the text in a header column, does it matter if I use the DataBound or RowDataBound because I can always just check the e.Row.RowType. Is there an actual difference besides the obvious?