Reputation: 10037
I have read all the post regarding the pro and con of ASP.net webform vs mvc.
However, I'm wondering under what circumstance does one use webform or mvc? would it come down to what you or your team is more familiar with?
Upvotes: 1
Views: 286
Reputation: 11858
My opinion is asp.net webforms more suitable for application that use it in intranet (internal systems) because it have a bunch of controls. also if you implement a big Application.
Asp.net MVC Suitable for a websites that uses a lot of ajax and you want a SEO frindly urls.
Upvotes: 0
Reputation: 3488
As time goes by, I find it very hard to use WebForms (against mvc) for anything new.
Upvotes: 0
Reputation: 30945
Typical business application with lots of controls, their behavior rules, with enabling/disabling them in response to the events fired by other controls would be a lot more complicated task with MVC while with WebForms you can do it during a coffee-pause.
Also with MVC you get nice SEO-friendly urls out of the box, which is great for publicly exposed sites. WebForms do not offer that convenience, however, for internal applications or the public ones protected by customer login it is no concern at all.
Upvotes: 1