What methods are fired during the page load?
Answers were Sorted based on User's Feedback
Answer / srujana
? Init() - when the page is instantiated,
? Load() - when the page is loaded into server memory,
? PreRender() - the brief moment before the page is
displayed to the user as HTML,
? Unload() - when page finishes loading.
Is This Answer Correct ? | 35 Yes | 9 No |
Answer / srikanth
1)Start
2)instansiated
3)load
4)validating
5)Event handling
6)rendering start
Is This Answer Correct ? | 4 Yes | 1 No |
Answer / nikhil
The methods which are getting triggered while page load are:
1. Load viewstate
2.Load psotback datas.
Is This Answer Correct ? | 5 Yes | 3 No |
Answer / rakesh
1)Page request - determines if it needs to be raised or compiled
2) start - if it is a new request or post back
3) Page initialization -
4)Load - if postback,control properties are loaded with
values of postback
5)validation - individual controls are validated
6) Postback - event handling
7)render - saves the view state data before rendering
8) unload
Is This Answer Correct ? | 8 Yes | 7 No |
what is the difference between sql 2000 and 2005?
if i have placed the button control with the OnClick event like <asp:Button ID="mybutton" runat="server" Text="Insert" onclick="mybutton_Click" /> and some other controls(buttons, textboxes) in .aspx page. When i run the page, the button displays in the page source of the browser like <input type="submit" name="mybutton" value="Insert" id="mybutton" /> here, it does not display the onclick event, then how the page calls the button click on the server side, how the server side identify which button cause the submit, and how this page moves to the server side.
Explain serialization and deserialization?
What is the main function of url routing system in asp.net mvc? : asp.net mvc
What is Partial in ASP.NET 2.0?
How to reduce the Page size in asp.net?
What is a master page and what does it do?
Can any one explain with the example how to capture the application error in Aplication_Error() method?
What is the life-span of the items in the viewstate?
Master Page
what are the attributes of sitemapnode?
What is reflection and disadvantages of reflection?