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

前端 未结 6 1677
不知归路
不知归路 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 06:09

    We were presented with the same opportunity. After playing around with MVC for a few weeks, we discovered there were things we didn't fully understand, as well as, things that were going to involve some changes:

    • Implementing a the Repository design pattern
    • Html Helpers vs standard Web Form controls, like Repeaters and GridView
    • Caching
    • Whether to use the framework we currently use, Csla, or try to move to just Linq-To-Sql with partial classes to hold the business logic
    • Complex classes and user interfaces that involved master-detail classes

    We decided to continue playing around with it and wait until it is officially released and then write an internal application and see where it leads us.

提交回复
热议问题