0
Is MVC a good framework to build a website?
I want to start building a website with a login screen, business logic etc. Is MVC a good framework for that?
2 Antworten
+ 5
Definitely YES.
However the choice between the WebForms vs MVC really depends on the project structure and resources.
WebForms allow quick prototyping and lower learning curve with performance tradeoff (although it's negligible unless abused).
On the hand MVC have the advantage of modularity by allowing easier maintenance and better logical grouping.
In the end those are just the tools to build web application and none of it is going to replace another.
Remember a good wielder with less performant tool often produce better result than a bad wielder with a good tool. 😉
0
Thanks Alot! Have a good day!