tags:

views:

106

answers:

3

For a new product(A web based high performance application) is it a good idea to use MVC framework instead of traditional development in .net. I have not used it before. Which is better in long run. I know MVC has benefits like unit testing etc but any thing else I should consider?

A: 

The MS MVC framework is a response to all the very successfull framework around, rails, django. Personnaly I only see plus to use this approach.

But I think the way you can really answer this question, is by evaluating your success rate with the technology you are using now. If it's high, keep it ( and practice MVC on the side to evaluate properly ). If your success rate is average or low, I would give MVC a try for sure.

pmlarocque
A: 

REST URIs, cleaner HTML is generated, etc.

ASP.NET MVC can definitely be used for a high performance product.

Adron