Explain the life cycle of an ASP .NET page.
Answers were Sorted based on User's Feedback
Answer / kunwar pal singh
Page_Init -- Page Initialization
LoadViewState -- View State Loading
LoadPostData -- Postback data processing
Page_Load -- Page Loading
RaisePostDataChangedEvent -- PostBack Change Notification
RaisePostBackEvent -- PostBack Event Handling
Page_PreRender -- Page Pre Rendering Phase
SaveViewState -- View State Saving
Page_Render -- Page Rendering
Page_UnLoad -- Page Unloading
Is This Answer Correct ? | 8 Yes | 1 No |
Answer / kinkar nag
1. PreInit
2. Init
3. InitComplete
4. PreLoad
5. Load
6. Load Complete
7. PreRender
8. SaveStateComplete
9. Render
10.Unload
Is This Answer Correct ? | 1 Yes | 0 No |
what is an Eventbubbling?
In what order do the events of an ASPX page execute, As a developer is it important to understand these events?
What is the difference between session and viewstate?
What is difference cookie and session?
Can u able to get the xml document in crystal report if yes how its possible
Whta are the Various steps taken to optimize a web based application (caching, stored procedure etc.) ?
How to store a dataset in a viewstate?
What is SilverLight in ASP.NET ?
Using shadow variable is good or bad for application?
What is application variable and when it is initialized ?
How to stop the inheritance?
How to convert a string into an Integer in ASP.net?