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
If you're looking for easy to use UI controls, jQuery would provide more functionality than MVC.
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.
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.
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.
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.
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.