top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is the difference between ASP.NET MVC and ASP.NET WebForms?

0 votes
478 views
What is the difference between ASP.NET MVC and ASP.NET WebForms?
posted Sep 21, 2016 by Sathyasree

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

-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.

answer Sep 21, 2016 by Shivaranjini
...