ASP.NET MVC vs Webforms

I have a very simple question about MVC.

What is it and why should I notice it. I know that this is not a replacement for asp.net, but that it is in ASP.NET, which I cannot do and therefore requires MVC.

I know that google.com is the best way to find answers, but I thought that if someone here who knows this really well could explain to me, I would be very obliged.

+3
source share
4 answers

I will begin with the fact that it is a common misconception that MVC is intended to replace Web forms, as you expected. ASP.NET MVC is simply an implementation of the ASP.NET MVC pattern . I would recommend you check out this post and this post . As you already mentioned, you can not only search Google, but also here.

You can check out the ScottGu post explaining it (published in 2007).
Also PM ASP.NET MVC Phil Haack has information on his blogs in MVC

+4
source

ASP.NET MVC uses a different design pattern than web forms. MVC strives to separate different problems into different levels.

ASP.NET MVC , ( ) URL-. , , webforms, MVC , .

ASP.NET MVC (, , ). . , , - ASP.NET, ViewState.

, , - MVC, " ".

, .

+4

MVC, . , , . , .

+2
+1

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


All Articles