| September 09, 2009 04:51:57 |
#10 |
| kirangiet |
Member Since: June 2009 Total Comments: 24 |
RE: ASP .Net Page Life Cycle |
Following are the events occur during ASP.NET Page Life Cycle:
1)Page_PreInit 2)Page_Init 3)Page_InitComplete 4)Page_PreLoad 5)Page_Load 6)Control Events 7)Page_LoadComplete 8)Page_PreRender 9)SaveViewState 10)Page_Render 11)Page_Unload
Among above events Page_Render is the only event which is raised by page. So, we can't write code for this event. Note:These event are not case sensitive. So we can write Page_Init as page_init in C#. Controls Events are the event raised when some action is performed on controls. |
| |