Friday, June 5, 2015

Diffrence Between Web Forms and MVC

ASP.NET Web Forms uses Page controller pattern approach for rendering 
layout, whereas ASP.NET MVC uses Front controller approach. In case of
Page controller approach, every page has its own controller, i.e.,
code-behind file that processes the request. On the other hand, in
ASP.NET MVC, a common controller for all pages processes the requests.

No comments:

Post a Comment