Click here to Skip to main content
15,892,059 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
What is an application life cycle ? I want a full description of every step
Posted
Comments
Sergey Alexandrovich Kryukov 10-Sep-13 1:04am    
This is not a very productive answer. What, any application? It depends... Starting from what point? Should it include development? Compilation, loading? JIT? It would probably be more useful if you explain your particular concerns.
—SA

Different application types behave differently. Web Forms, MVC, WinForm, console, WCF....
However, every app have some common conceptual life cycle elements, and have platform specific implementation for them.

1: Initialize: Setup global objects, configuration. WebForms (Global.asax), WinForm (Main.cs), WCF (service constructors) etc...
2: Application request: Invoke various methods (WebForms (Page life cycle), WinForm (Form's load and events), WCF (individual operations) etc...
3: Application termination: Release global resources. webforms(Global.asax), WinForm (Main.cs), WCF (no specific)

Depending on which platform you want to get information about, you can study them specifically
 
Share this answer
 
Comments
Member 10263365 10-Sep-13 2:06am    
can u please explain the product life cycle in winform application
Detailed Description you can found from this

[link]






Ravi Halvadiya

Software Engineer

www.InsightSoftech.com
 
Share this answer
 
This article is having all what u want

ASP.NET Application and Page Life Cycle[^]
 
Share this answer
 
Comments
Member 10263365 10-Sep-13 1:36am    
thanks for this article .
[no name] 10-Sep-13 1:45am    
Accept the solution if it's helpful..

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900