What are the new page events added in Asp.net 2.0 ?
Answer Posted / mohini nalawade
The new events added to the page class are:
1. InitComplete is called when the page is initialized and
the process is complete.
2. LoadComplete as the name suggests is called at the end
of the load stage of the page’s life cycle.
3. PreInit is called before the page is initialized
4. PreLoad is called before the loading of the page is
complete.
5. PreRenderComplete is called when the prerendering phase
is complete and all the child controls have been created.
After the event, the personalization data and the view
state are saved and the page is rendered to HTML.
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
What are the namespace classes used in asp.net mvc? : asp.net mvc
Differentiate between Server.Transfer and Response.Redirect with functionality? Why we can choose one over the other?
Which object encapsulates state or data of a user?
What parameters can you pass in the url of the api? Can get and post use the same url?
How do we assign page-specific attributes?
What is the difference between the asp and asp.net?
What is anonymous authentication?
What are standard controls?
How do you declare static variable?
What are the cookies types in asp.net?
Is LINQ performance wise better or using sqlcommand?
What is meant by asp.net?
Am not able to move the controls on the form freely in asp.net 3.5 even though I selected the position as relative or absolute for those controls. What should I do to overcome this?
What are validator? Name the validation controls in asp.net? How do you disable them? Will the asp.net validators run in server side or client side? How do you do client-side validation in .net? How to disable validator control by client side javascript?
Explain the difference between server.transfer and response.redirect? Why would I choose one over the other?