As developer knowing the Asp.net MVC life cycle is really
important. Here in this article i will explain your life cycle of the asp.net
mvc5 application in detail. Please check the below mention flow diagram.
Now I will explain you each and every point of the life
cycle as per the diagram.
HTTP Request: It’s related to the user request.
Routing: Routing is the process
of representing the URL structure. In routing there are three things
- Controller
- Action name
- Parameter
MVC Handler: Under
MVC handler following operation comes:
1 1.
Controller
2. Authentication & authorization
3. Model binding
4. Action Method invoke
5. Execution of view
2. Authentication & authorization
3. Model binding
4. Action Method invoke
5. Execution of view
After completion of execution of view response return the user in the form of HTTP response.
0 comments:
Please let me know your view