Efficiency is MVC Better Than Web Forms in ASP.NET

We are going to develop a website in ASP.NET. So it is better to use MVC or web forms.

+3
source share
4 answers

It depends on which site you want to build, as well as on your knowledge and experience in creating websites.

If you know your material and are confident in your ability to work "close to metal" (as it were), I would imagine that you could build a faster website using ASP.NET MVC, since you could optimize your to have as little overhead as possible. However, you can build a very fast site using standard ASP.NET, so it really depends on the requirements of your project.

+5
source

My completely unscientific opinion: Yes; ASP.NET MVC is faster than web forms.

ASP.NET MVC displays pop-ups of the order of 1-2 seconds. Web forms are more like 3-5 seconds.

, ASP.NET MVC, MSDN, , . , .

YMMV

+2

Web forms and MVC have their own strengths. Web forms usually have a familiar coding style, where you attach a handler to something like a button click and write code to process it. MVC has a greater separation of coding style issues and is generally more testable.

It all depends on your coding preferences and the time it takes to deliver the project with respect to learning curves.

I would suggest that many other blogs have answered this question a million times on this site.

+1
source

Source: https://habr.com/ru/post/1725923/


All Articles