How to decide which is right, WebForms or MVC when doing ASP.NET

前端 未结 6 1666
不知归路
不知归路 2020-12-03 05:07

So I\'m about to start of a small project for my sporting club for member registrations and I\'m trying to decide between WebForms or MVC.

Allit will be is a user lo

6条回答
  •  伪装坚强ぢ
    2020-12-03 05:56

    IMO, MVC is the way to go forward. If you have the time to learn the MVC programming way (because you hinted that you wanted to play with MVC .. meaning, you haven't used it yet), then this would be an excellent opportunity to dig into the product.

    The learning curve is not high if you have previous WebForms experience (which i'm guessing you do).

    If you need to make a site really quick, don't care about what it is and the site will be small, then go WebForms. It's the quick and nasty solution (for my opinion only). WebForms work 100% perfectly well. All my sites have been WebForms and they are fine.

    Summary:

    • Got time and want to learn the best way to make sites: MVC
    • No time or don't care: WebForms.

    gl and hth.

提交回复
热议问题