thevan
thevan

Reputation: 10354

List the order of GridView Events in Asp.Net

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

Answers (1)

Martin Parenteau
Martin Parenteau

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

Related Questions