View Single Post
  #2 (permalink)  
Old 05-24-2008, 09:52 AM
ram101 ram101 is offline
Senior Member
 
Join Date: Jun 2007
Posts: 270
Default

1.

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.

3. After the Init() and before the Page_Load(), or OnLoad() for a control.

4.Client side is done by default. Server side validation is also possible. We can switch off the client side and server side can be done.

5.System.Web.UI.Page
Reply With Quote