vote up 7 vote down star
1

I like having control over exactly what's going on under the hood (the MVC way), but I'm also lazy, and don't like writing tons of javascript GUI things. Should I or should I not switch to MVC? Thanks, Nestor

flag

If you like control, then MVC is your Huckleberry. As noted below jQuery will drastically reduce the complexity and number of lines you will write in Javascript. – Charles Conway Oct 4 at 21:41
3  
Note that jQuery might reduce the number of lines that you write, but it doesn't necessarily reduct the number of lines that get executed in the browser. This can have performance implications, especially with earlier (<8) IE versions. – Richard E Oct 4 at 21:47

6 Answers

vote up 8 vote down check

It depends. If you are good at writing Webforms applications, you have lots of ASP.NET server controls already at your disposal, and you don't need a lot of finesse (read: code behind) in your application, then Webforms is probably a better choice.

On the other hand, if you like applications that are highly performant and cleanly architected, need precise control over your markup, and would like your application to be testable, then ASP.NET MVC is a better choice.

There are lots of easy to use JQuery widgets available for ASP.NET MVC, so your dislike of Javascript shouldn't hold you back. But there is a learning curve to MVC, so if you are averse to learning new things, I would stick with Webforms.

link|flag
1  
Mostly agree (+1), with the caveat the webforms performance outpaces mvc on small to medium corporate intranets where viewstate is an asset rather than a liability. – Joel Coehoorn Oct 4 at 21:43
1  
If you are adverse to learning new things, you need to start looking for a new career, software development is about learning new things. – Charles Conway Oct 4 at 21:44
@Joel Good observation with the ViewState and intranet performance. – Charles Conway Oct 4 at 21:47
+1 for "It depends" – Chris Ballance Oct 5 at 2:14
vote up 0 vote down

You could also consider the MVP (Model View Presenter) pattern: It gives you the same separation of logic and presentation as MVC, while it still allows you use the ASP.NET server controls.

"Model View Presenter", article from MSDN Magazine.
Model-View-Presenter Pattern from the Web Client Software Factory documentation on MSDN.

link|flag
vote up 1 vote down

If you are writing complex websites where the functionality you are trying to deliver has echos of classic Windows applications then I find that WebForms can be the best bet. Certainly ViewState can be (and often is) wielded without regard for the consequences (large postbacks etc). However the quality of most WebForms controls, and more recently the addition of the ListView control make it a very productive platform.

On the other hand, if you are crafting websites in conjunction with a design team who are specifying the exact HTML to render and the actual functionality is less complex then MVC can be great. MVC also pushes you down a coding model that is by default more suited to testability. There are lots of jQuery plug-ins that deliver rich UI features without lengthy coding but I have had minor quality issues with a few of the plug-ins I have used. Also most of the time I don't need choice of watermark or calendar controls - I just want one that works!

In summary - I think it depends on whether you are writing a web site or a web application.

link|flag
vote up 2 vote down

ASP.NET MVC is definitely worth to know! You will have total control over your html, will learn many good habits and will explore the fantastic world of jquery.

At last give it a try... it is good to be learning something new regularly.

link|flag
vote up 7 vote down

Yes you should. WebForms is a big leaky abstraction that try to convince you that writing Web applications is like writing Windows application, which is false.

Managing PostBack is a pain for one. It generates a lot of garbage code in your HTML.

link|flag
1  
+1 I agree 100 percent. I predict that Web Forms will soon be thought of as legacy code. – Charles Conway Oct 4 at 21:38
1  
+1. PostBack has cost me many, many hours of frustration and debugging. Originally I found that writting code within the page took me back to the old asp days but once you get over that, and only return data that requires little UI coding, it's just the best. And no page life cycle to contend with such as having to re-create all your controls again just to get their values out! – griegs Oct 4 at 21:47
@griegs Amen brother! – Charles Conway Oct 4 at 21:48
vote up -3 vote down

If you're looking for easy to use UI controls, jQuery would provide more functionality than MVC.

link|flag
2  
What is that supposed to mean ? jQuery is a client-side framework, while ASP.NET MVC is a server-side framework. Comparing them is a nonsense... – Thomas Levesque Oct 4 at 21:34
and just to add to Thomas' criticism: jQuery does, in fact, ship with ASP.NET MVC as the client-side library of choice, so you get jQuery with ASP.NET MVC anyway. – Rob Levine Oct 4 at 21:39
Wow, this (answer) shows very little understanding of the MVC framework. – griegs Oct 4 at 21:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.