10
Reply

Explain Asp.Net MVC life cycle ?

Mitali Jobanputra

Mitali Jobanputra

Jan 14, 2016
4.3k
2

    1.App intialization.2.Routing..3.Instatiate & Excecute contrroler.4.Locate & invoke controler action .5.instatiate & render view......

    sudheer kumar
    February 09, 2017
    1

    Asp.net MVC Request Life Cycle Routing MvcHandler MvcHandler Action Execution View Result View Engineand View

    Keerthi Venkatesan
    June 08, 2016
    1

    UrlRoutingModule->Route table->Controller->Action Execution-> Results,->View Engine and finally render a viewThat is the basic step but there is too much deep step like MVC handler,Icontroller,ActionInvoker,Iroute Handler,filter etc.

    Shuvojit Halder
    November 16, 2016
    0

    Action Verb -> Routing, Handler, Controller, Action Execution, Results, View Engine and finally render a view

    http://dotnet-munesh.blogspot.in/2015/05/page-life-cycle-in-mvc-in-aspnet.html

    Munesh Sharma
    May 09, 2016
    0

    7 Steps Are include in Life Cycle of Asp.Net MVC life cycle 1 Routing 2. Mvc Handler 3 Controller 4 Action Execution 5.View Result 6 view Engine 7 View

    Pankaj Kumar Choudhary
    February 21, 2016
    0

    Please visitThese useful visit link about Asp.net MVC life cyclehttp://www.dotnet-tricks.com/Tutorial/mvc/TbR0041112-Asp.net-MVC-Request-Life-Cycle.htmlhttps://www.mindstick.com/blog/48/asp-dot-net-page-life-cyclehttp://www.codeproject.com/Articles/1028156/A-Detailed-Walkthrough-of-ASP-net-MVC-Request-Life

    Allen Scott
    February 16, 2016
    0

    http://www.dotnet-tricks.com/Tutorial/mvc/TbR0041112-Asp.net-MVC-Request-Life-Cycle.html

    Shailesh Uke
    February 16, 2016
    0

    Nice diagram is given over here: http://www.asp.net/mvc/overview/getting-started/lifecycle-of-an-aspnet-mvc-5-application

    Shweta Lodha
    January 21, 2016
    0

    There are seven stages stage1: receive a request first for the application in this stage route objects are added to the route table in the global.asax filestage2: Perform routing in this stage url route module creates route data by using route object in the route table stage3: create mvc request handler in this stage request context instance pass to the handler stage4:create controller in this stage mvc handler uses the request context instance to find the icontroller factory object stage5: execute controller mvc handller instance calls the controller execute method stage 6 invoke action method stage7 execute result

    harish narisetty
    January 20, 2016
    0