what is the difference between Asp.net page life cycle and Asp.net Mvc page life cycle ?
Asp.net page life cycle Simply remember SILVER U
s- Start
I-Initializa
ASP.NET Web Forms
ASP.NET MVC
It uses Front Controller approach. That approach means a common controller for all pages processes the requests.
ASP.NET MVC approach is stateless as that of the web. So there is no concept of viewstate.
But in actual in MVC there is no page life cycle per se (because there is no 'page' object), but there is a request processing pipeline:
You could take help from here nice description or refer to MVC4 and page life cycle?