Duplicate:
We are developing an enterprise application which uses client-server architecture. It is based on .NET Framework 3.5, the client is a rich WinFom application and the entire system is in Beta testing stage. We need to exposed some of this system’s functionality through web. The current desktop client application, makes minimum amount of calls to the server but it has relatively medium to high amount of data transfer.
Currently the basic idea is to create a front-end layer for our system, using ASP.NET Web Forms or ASP.NET MVC. We don’t have much experience with ASP.NET MVC but this technology seems very interesting and promising (at least for me).
My Questions are:
- What considerations do you make when choosing a web development technology?
- What may you choose for such a scenario, Web Forms or MVC?
If you want to use ASP.NET MVC Framework now, which at the moment is in beta, you run into the risk at version change that some functionality will break. You may need to condisider this as a maintenance issue.
ASP.NET MVC Framework also requires software developers to be accustomed with model-view-controller ‘pattern’. There are a lot of pits to fall into if devs don’t agree how interaction is supposed to be done between the three layers.
Unless you have programmers that can do use this you may want to consider using Web Forms instead. There are loads of documentation and resources available for Web Forms but MVC Framework has to be searched for in blogs and the little documentation that is available on the project homepage.
I’ve been working on the ASP.NET MVC Framework Beta myself and I can say it’s been great so far. But the reason it works great for me is because I’ve been tinkering before with other MVC frameworks such as Ruby on Rails.