Multiple choice

Which of the following page life cycle events is raised after the page loads view state for itself and all other controls, and then it processes postback data?

  1. init

  2. PreLoad

  3. PreRender

  4. InitComplete

  5. LoadComplete

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The PreLoad event is raised after the page loads view state for itself and all controls, and after it processes PostBack data that is included with the Request instance. We can process any kind of operation that we want before the page load.