cody on 5 reasons why you should use ASP.NET MVC
Maxime,It it actually possible to use Webform controls with the MVC framework. I've heard success varies depending on how tightly bound controls are to the Postback/ViewState models.A demonstration of...
View ArticleNathan Blevins on 5 reasons why you should use ASP.NET MVC
Nice listing but make sure that you give credit where credit is due.1) Testibility - Given that you actually use WinForms correctly, you can get the same amount of code coverage. 2) URL Routing is...
View ArticleKevin Pang on 5 reasons why you should use ASP.NET MVC
I agree with most of your arguments, but #5 seems the weakest to me. Downloading jQuery doesn't take much effort. Or you could just use the Google AJAX Libraries to include jQuery in your project....
View ArticleBrian Di Croce on 5 reasons why you should use ASP.NET MVC
@Nathan: Did you mean WebForms? ;) Anyhow, I agree with Nathan's observation. Whatever you can do with ASP.NET MVC, you can also do it with WebForms. As for the MVC (or MVP) pattern, well it's just...
View ArticleNathan Blevins on 5 reasons why you should use ASP.NET MVC
@Brian Oops! Yes, I meant WebForms. Proofreading fail on my part.
View ArticleBart czernicki on 5 reasons why you should use ASP.NET MVC
I would add to that simpler "page" lifecycle. There are no init, preinit, load etc events in the page and this makes it easier to code and persforms a lot faster than web forms.
View ArticleMaxime Rouiller on 5 reasons why you should use ASP.NET MVC
Thanks for the comment everyone. I just want to tell everyone that I don't push MVC as being superior to MVP. MVC has it's advantage where MVP has it's own. What I like about the use of MVC in a...
View Articleedev on 5 reasons why you should use ASP.NET MVC
I've used MVC, like MVP better - gives me many more options. Routing is available to webforms, MVP and MVC - not specific. The *only* thing I personnally see that MVC gives the community is a framework...
View Articleajondeck.net on 5 reasons why you should use ASP.NET MVC
Nice write-up... however I too would not agree with #5. jQuery can just as easily be used in Web Forms. So far my experience with MVC on two large scale web applications has been positive. Looking...
View ArticleBetty on 5 reasons why you should use ASP.NET MVC
Don't get me wrong, I'm a big fan of MVC I just don't like posts like this. I feel like I should be going through each of your points and refuting it.I'll hold myself back and just have a gentle dig at...
View ArticleMoran BD on 5 reasons why you should use ASP.NET MVC
MVC is better for testability. When you create the project, VS creates tests for you. And we've done an experiment with Isolator to make these tests even...
View Article