-ASP.NET MVC does not use View State to record state information whereas ASP.NET web form uses View State to record state information.
-ASP.NET Web forms are better for Rapid application development in the case if you small development team. ASP.NET MVC is better for large project where you give more priority to testability and maintainability.
-In ASP.NET Web form View is called after controller wherein ASP.NET MVC the rendering of View is managed by controller based on the action.
-ASP.NET Web forms development is easy to learn compared to ASP.NET MVC development.