Reputation: 10354
Like Page Life Cycle events, Can anyone list the order of the GridView Events? This question has been asked in an interview. I am googling it but couldn't get the desired answer.
Upvotes: 3
Views: 7548
Reputation: 73731
Here is the order I get:
Init
Load
DataBinding
RowCreated
RowDataBound
RowCreated
RowDataBound
...
RowCreated
RowDataBound
DataBound
PreRender
Unload
I haven't listed the SelectedIndexChanging/SelectedIndexChanged, PageIndexChanging/PageIndexChanged, Sorting/Sorted and row editing and deleting events.
Upvotes: 7