Asp.net Mvc
Mention the differences between Asp.net life cycle and Asp.net Mvc life cycle ?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Manish TewatiaPosted Sep 5, 2013, 12:03 AM
ASP.NET life cycle
Page request
Start : Request and Response are set
Initialization
Load
Postback event handling
Rendering Page
Unload: Response and Request are unloaded
ASP.NET MVC life cycle
First RouteTable maps URLs to handlers
UrlRoutingModule intercepts every request
MvcHandler creates a controller
Controller find which controller method to execute
At last RenderView Method is Called