Page Life Cycle
-
Hi all, I want to know what are the evens that automatically executed when page is loaded in asp.net.There are 7 such events. Listed, 1. Page Request 2. Start 3. Initialization 4. Load 5. Postback Event Loading 6. Rendering 7. Unload So my question is what are the methods picked up here. I've listed what I know in the order of execution, with the event related with as a comment on the body of the method
protected void Page_Init(object sender, EventAgs e)
{
// Start ?
}protected void Page_Load(object sender, EventArgs e)
{
// Rendering
}protected void Page_LoadComplete(object sender, EventArgs e)
{
// Unload
}I'm lost with mapping, controlling other events. Can anyone of you comment on this? Thanks
I appreciate your help all the time... CodingLover :)
-
Hi all, I want to know what are the evens that automatically executed when page is loaded in asp.net.There are 7 such events. Listed, 1. Page Request 2. Start 3. Initialization 4. Load 5. Postback Event Loading 6. Rendering 7. Unload So my question is what are the methods picked up here. I've listed what I know in the order of execution, with the event related with as a comment on the body of the method
protected void Page_Init(object sender, EventAgs e)
{
// Start ?
}protected void Page_Load(object sender, EventArgs e)
{
// Rendering
}protected void Page_LoadComplete(object sender, EventArgs e)
{
// Unload
}I'm lost with mapping, controlling other events. Can anyone of you comment on this? Thanks
I appreciate your help all the time... CodingLover :)
-
Hi all, I want to know what are the evens that automatically executed when page is loaded in asp.net.There are 7 such events. Listed, 1. Page Request 2. Start 3. Initialization 4. Load 5. Postback Event Loading 6. Rendering 7. Unload So my question is what are the methods picked up here. I've listed what I know in the order of execution, with the event related with as a comment on the body of the method
protected void Page_Init(object sender, EventAgs e)
{
// Start ?
}protected void Page_Load(object sender, EventArgs e)
{
// Rendering
}protected void Page_LoadComplete(object sender, EventArgs e)
{
// Unload
}I'm lost with mapping, controlling other events. Can anyone of you comment on this? Thanks
I appreciate your help all the time... CodingLover :)
Check these links : 1. http://msdn.microsoft.com/en-us/library/ms178473(v=vs.80).aspx[^] 2. http://msdn.microsoft.com/en-us/library/ms178472(v=vs.80).aspx[^] Hope this helps. All the best.
-
Check these links : 1. http://msdn.microsoft.com/en-us/library/ms178473(v=vs.80).aspx[^] 2. http://msdn.microsoft.com/en-us/library/ms178472(v=vs.80).aspx[^] Hope this helps. All the best.
Good Solution .
-
check this
♫ 99 little bugs in the code, 99 bugs in the code We fix a bug, compile it again 101 little bugs in the code ♫
My software does not have bugs.. It just develops random features.
Programming is a race between programmers trying to build bigger and better idiot proof programs, and the universe trying to build bigger and better idiots, so far... the universe is winning.
-
Hi all, I want to know what are the evens that automatically executed when page is loaded in asp.net.There are 7 such events. Listed, 1. Page Request 2. Start 3. Initialization 4. Load 5. Postback Event Loading 6. Rendering 7. Unload So my question is what are the methods picked up here. I've listed what I know in the order of execution, with the event related with as a comment on the body of the method
protected void Page_Init(object sender, EventAgs e)
{
// Start ?
}protected void Page_Load(object sender, EventArgs e)
{
// Rendering
}protected void Page_LoadComplete(object sender, EventArgs e)
{
// Unload
}I'm lost with mapping, controlling other events. Can anyone of you comment on this? Thanks
I appreciate your help all the time... CodingLover :)