user274364
user274364

Reputation: 1857

GridView Events Clarification

Recently I have been asked an interview question "What are the events order in GridView?".

I explained

I would like to check whether my answer is right or not.

Upvotes: 3

Views: 2888

Answers (1)

dugas
dugas

Reputation: 12453

The following list was obtained by creating an event handler for all events available in the Gridview's design mode in VS.Net and placing the following in the handler:

Debug.WriteLine("EventName");

Init

DataBinding

RowCreated

RowDataBound

DataBound

Load

(Action Events) (i.e - SelectedIndexChanging, SelectedIndexChanged)

PreRender

Unload

Upvotes: 3

Related Questions