WHAT IS THE SEQUENCE IN WHICH ASP.NET EVENTS IS PROCEED?
Answers were Sorted based on User's Feedback
Answer / gurmeet
PreInit-> Init -> PreLoad -> Load -> PreRender -> Render->
PreUnload -> Unload
Is This Answer Correct ? | 6 Yes | 1 No |
Answer / mithun
Pre Init--> Init-->Init Complete-->Pre Load--> Load-->Load Complete-->Pre Render--> Render--> Unload
Is This Answer Correct ? | 5 Yes | 0 No |
Answer / anand gopal makwa munger
LoadControlState --> LoadViewState --> LoadPostdata --> Load(Onload) --> RaisePostDataChangedevents --> RaisePostbackEvents -->PreRender(OnPreRender) --> SaveControlState --> SaveViewstate --> Render --> Dispose --> UnLoad.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / anirudh
preinit->init->preRender->render->preload->load..
Is This Answer Correct ? | 2 Yes | 4 No |
Is data can be edited in the Repeater control?
What type of code, client-side or server-side, is found in a code-behind file of a Web page?
What is enableviewstate in asp net?
How many web.config files in each solution
Explain the significance of routing? : asp.net mvc
What is inheritance and an how it be used, example with an example?
What is difference between session and viewstate?
Difference between ADO.net Dataset , ADO Record Set & ADO Data Reader?
Give an example of cookie abuse.
Dataset is the disconnected environment. suppose if you are binding records to gridview (disconnected environment) and you are making changes to the the grid but before updating the database if any other user modify the data, how will you avoid such problem?
How many Controls present in Asp dot net?
What is custom attribute?