It seem like mvc 3 team decided to bring in a feature for dynamic data exchange between a controller and a view called the viewbag but it is A good thing against the strongly typed view we all know about? Would like your opinion .. Is this feature going to replace strongly typed view ? (viewmodels)

link|improve this question

feedback

1 Answer

up vote 23 down vote accepted

The ViewBag is the same thing as ViewData in previous ASP.NET MVC 1 and 2. It just happens to be dynamic instead of needing to use it like a dictionary with keys. I don't think this will replace strongly typed views at all and in fact you should use Viewdata/Viewbag as little as possible. Always use strongly typed views whenever possible since it will lead to fewer errors if the names in your Viewdata/Viewbag change and make the HTML cleaner by not having ViewData casts all over the place.

link|improve this answer
2  
Then why have Microsoft created the ViewBag at all? – Carsten Gehling Sep 26 '11 at 10:14
@CarstenGehling it's there so you have the option to do things in a quick and dirty manner if you choose. Sometimes business needs a quick and dirty solution, and MVC doesn't try to make that call for you. It's up to you. – Chris Nov 10 '11 at 15:59
4  
I tend to say that this bring newbies to the world of "Bad practice". – Rushino Nov 11 '11 at 14:25
1  
Using ViewBag should be fine for setting things like the page title in a view, which will be passed to the master layout. – Fred Wilson Dec 27 '11 at 18:35
@Rushino That's one way to look at it. Bear in mind that there are other, more dangerous, ways to abuse the API. Not just MVC, but .NET in general. The best way to deal with it is education. Learn the right way to do things and when you pass on your knowledge (through training junior devs or pair programming) - teach them the right way. – Arnold Zokas Feb 1 at 1:35
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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