vote up 2 vote down star
2

Duplicate:


After reading good reviews and blog posts of ASP.NET MVC, I decided to follow the hype and used it in a web based business application project. However, I now felt it is probably not the best technology for this type of application.

Typical business applications consists hundreds of fields and controls. I ended up having to emulate ViewState and persist form field values myself and resulted in ugly data conversion code everywhere.

I was wondering what are the other bad use cases for ASP.NET MVC?

flag

76% accept rate
2  
Hmm, can you elaborate on why you had to do so much work with ViewState? – jcollum May 6 at 23:41
3  
Why the close vote? ASP.NET MVC might be popular, but discussing the downsides of it is also important, especially when considering to use it. – divo May 6 at 23:43
@divo: subjective / argumentative perhaps? Question does come off as more of a rant than a serious question. – Shog9 May 6 at 23:44
Or, maybe, duplicate... stackoverflow.com/questions/191556/… ... stackoverflow.com/questions/328465/… ... stackoverflow.com/questions/41712/… ... stackoverflow.com/questions/102558/… – Shog9 May 6 at 23:47
1  
It's not really a question, more of a blog post or rant. It assumes that MVC is bad and becomes a dumping ground for frustrations. A better question would be "is my application an example of something MVC doesn't address well or am i missing something?" My vote is for missing something -- like the whole point of MVC. If you find yourself reinventing WebForms in MVC, then you're doing something wrong. – tvanfosson May 6 at 23:47
show 7 more comments

closed as exact duplicate by Juan Manuel, tvanfosson, Lucas McCoy, JP, Shog9 May 6 at 23:51

2 Answers

vote up 2 vote down

If you're developing for a local corporate LAN — and let's be honest: that's probably a lot of us — WebForms has a big advantage that is thrown away for MVC.

In this scenario, the ViewState that is often WebForms' achillies heel becomes a great strength, because you can easily push state to the client that would otherwise take up space or database time to recreate on the server. In a 'normal' site, putting too much in ViewState is a big problem because even broadband users have lower upstream bandwidth, and ViewState can eat that up. But in a LAN where everyone has 100Mbps access to the webserver, this is a great option.

link|flag
vote up 2 vote down

You've picked up the exactly right situation when NOT to use MVC.

In business applications with lots of controls it is much more easier to use event handling approach to update the controls in reaction to other controls.

Attempt to do it manually (with ASP.NET MVC) for example will result in a mess of custom implementation of state management + lots of JavaScript scattered all over the code. And your JS will not be able to access code behind (at least, in a simple manner).

link|flag
@Mastermind: exactly. I mean, with MCV you really do gain a whole host of built in, architectural benefits. But for old school CRUD apps, webforms just saves you loads and loads of time and complexity – andy May 7 at 0:01
2  
I always found that I spent a lot of time trying to work around the "help" that WebForms gave me. I don't miss viewstate a bit and ALL of my applications are CRUD apps. – tvanfosson May 7 at 0:10

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