In what order do the events of an ASPX page execute. As a
developer, why is it important to understand these events?

Answers were Sorted based on User's Feedback



In what order do the events of an ASPX page execute. As a developer, why is it important to underst..

Answer / shalini

The events occured as follows:-
1)Page_Init()
2)Page_Load()
3)Page_Prerender()
4)Page_Unload().

Is This Answer Correct ?    51 Yes 5 No

In what order do the events of an ASPX page execute. As a developer, why is it important to underst..

Answer / kannan

Page_PreInit()
Page_Init()
Page_InitComplete()
Page_PreLoad()
Page_Load()
Page_LoadComplete()
Page_Prerender()
Page_Render()
Page_Unload()

Is This Answer Correct ?    18 Yes 6 No

In what order do the events of an ASPX page execute. As a developer, why is it important to underst..

Answer / simon

Follow up question: what is the actual difference between
Page_Init and Page_InitComplete Events?

As far as I can gather from googling this a bit, both fire
when the Initialisation stage is complete - all controls
have been created and are available, but before any
viewstate has been re-loaded into the controls.

If I wanted to dynamically create more controls, or add
rows to an existing table etc. Which event procedure
should I use?

Is This Answer Correct ?    6 Yes 4 No

In what order do the events of an ASPX page execute. As a developer, why is it important to underst..

Answer / firoj husen shaikh

The events will be executed in following order,
Page_PreInit()
Page_Init()
Page_InitComplete()
LoadViewState()
Page_PreLoad()
Page_Load()
Page_LoadComplete()
Page_Prerender()
SaveViewState()
Page_Render()
Page_Unload()

As a developer it is necessry to understand which event is
useful to initialize variables and other kind of
initialization.

Is This Answer Correct ?    9 Yes 8 No

In what order do the events of an ASPX page execute. As a developer, why is it important to underst..

Answer / ashutosh

Page_PreInit
Page_Init
Page_InitComplete
Page_PreLoad
Page_Load
Page_LoadComplete
Page_Prerender
Page_Unload

Is This Answer Correct ?    2 Yes 2 No

Post New Answer

More ASP.NET Interview Questions

What is asp.net response object?

0 Answers  


Explain the purpose of storyboard.targetproperty.

0 Answers  


There is a login page that has two text boxes with required field validators on it. The page has a login and cancel button. How can we ensure that the click on the cancel button doesnt fire a validation event.

2 Answers   Proteans,


Explain the difference between sql invalidation and sql notification.

0 Answers  


what is shared assembly?

2 Answers   Microsoft,






ASP.NET Web Service

1 Answers  


What is the difference between Server.Transfer and Response.Redirect? Why would you choose one over the other?

26 Answers   Syntax Softtech,


How to authenticate users using Web.Config ?

1 Answers   Accenture,


What is the purpose of App_Code folder in ASP.NET? Why we this?

0 Answers   Sans Pareil IT Services,


What asp.net control can embed xaml into asp.net pages?

0 Answers  


What is _viewstart?

0 Answers  


Explain About WebService

0 Answers   BirlaSoft,


Categories