Traditional ASP .NET Web Forms vs MVC

后端 未结 8 1885
眼角桃花
眼角桃花 2020-11-29 07:41

As someone with some winforms and client applications experience - is it worth going back and learning the way traditional ASP .NET pages work, or is it okay with moving str

8条回答
  •  佛祖请我去吃肉
    2020-11-29 08:05

    Here is the great thing about MVC. It works closer to the base of the framework than normal ASP.NET Web Forms. So by using MVC and understanding it, you will have a better understanding of how WebForms work. The problem with WebForms is there is a lot of magic and about 6 years of trying to make the Web work like Windows Forms, so you have the control tree hierarchy and everything translated to the Web. With MVC you get the core with out the WinForm influence.

    So start with MVC, and you will easily be able to move in to WebForms if needed.

提交回复
热议问题