Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I saw the ViewBag in MVC 3. How's that different than ViewData in MVC 2?

share|improve this question

5 Answers

up vote 127 down vote accepted

It uses the C# 4.0 dynamic feature. It achieves the same goal as viewdata and should be avoided in favor of using strongly typed view models (the same way as viewdata should be avoided).

So basically it replaces magic strings:

ViewData["Foo"]

with magic properties:

ViewBag.Foo

for which you have no compile time safety.

I continue to blame Microsoft for ever introducing this concept in MVC.

The name of the properties are case sensitive.

share|improve this answer
4  
Pretty much like dictionary in python..... But far more not enough. – user469652 Jan 16 '11 at 13:01
7  
But I have to agree with blaming Microsoft for introducing the concept (not just to MVC but to .Net 4 in general). – Charles Boyung May 13 '11 at 14:24
5  
@Jon, no, you don't get any checking. You get all your errors at runtime. There is no safety. Personally I never use ViewBag/ViewData in a real ASP.NET MVC application. – Darin Dimitrov Sep 2 '11 at 21:58
8  
ViewBag/ViewData do have some some uses where use of a ViewModel would not be an appropriate solution. One major example I come across a lot is in when using EditorFor or DisplayFor. There are overloads that allow you pass values via ViewData/ViewBad so the editor template can then retrieve and use those values. – Stephen M. Redd Oct 14 '11 at 22:28
14  
ViewBag saves time/code. The value of compile time type safety is marginal. The only benefit I see for strong typing is less time spent developing validation. – micahhoover Dec 1 '11 at 16:53
show 18 more comments

Internally ViewBag properties are stored as name/value pairs in the ViewData dictionary.

Note: in most pre-release versions of MVC 3, the ViewBag property was named the ViewModel as noted in this snippet from MVC 3 release notes:

(edited 10-8-12) It was suggested I post the source of this info I posted, here is the source: http://www.asp.net/whitepapers/mvc3-release-notes#_Toc2_4

MVC 2 controllers support a ViewData property that enables you to pass data to a view template using a late-bound dictionary API. In MVC 3, you can also use somewhat simpler syntax with the ViewBag property to accomplish the same purpose. For example, instead of writing ViewData["Message"]="text", you can write ViewBag.Message="text". You do not need to define any strongly-typed classes to use the ViewBag property. Because it is a dynamic property, you can instead just get or set properties and it will resolve them dynamically at run time. Internally, ViewBag properties are stored as name/value pairs in the ViewData dictionary. (Note: in most pre-release versions of MVC 3, the ViewBag property was named the ViewModel property.)

share|improve this answer
The question asks the difference between ViewData and ViewBag, not about ViewModel. – Matthew Flaschen Nov 7 '11 at 22:46
Thanks for the heads-up Matthew Flaschen, I had a typo in the response and fixed it, now reads "ViewData" instead of ViewModel which was a mistake. :) – DisplacedGuy Nov 20 '11 at 20:02
Now it's incorrect. Neither was renamed to the other. They both still exist. One is dynamic and supports ViewBag.Message. One uses the old ViewData["Message"] syntax. – Matthew Flaschen Nov 20 '11 at 21:32
Matthew, You are correct. I've revised this so that it is correct. It isn't necessarily the best answer but at least it is now accurate. When I originally posted I wrongly thought the question was about ViewModel – DisplacedGuy Nov 22 '11 at 7:10
1  
+1 But, what source are you quoting from...? Should really provide a link. – Sam May 18 '12 at 14:31
show 1 more comment

There are some subtle differences that mean you can use ViewData and ViewBag in slightly different ways from the view. One advantage is outlined in this post http://weblogs.asp.net/hajan/archive/2010/12/11/viewbag-dynamic-in-asp-net-mvc-3-rc-2.aspx and shows that casting can be avoided in the example by using the ViewBag instead of ViewData.

share|improve this answer

Can I recommend to you to not use either?

If you want to "send" data to your screen, send a strongly typed object (A.K.A. ViewModel) because it's easier to test.

If you bind to some sort of "Model" and have random "viewbag" or "viewdata" items then it makes automated testing very difficult.

If you are using these consider how you might be able to restructure and just use ViewModels.

share|improve this answer
4  
Ignoring the "compiler is the first unit test" principal how does a statically typed view model make your code more testable than a dynamic type? Whilst the requirement for tests is more important in a dynamically typed solution, if both solutions implement the same number and type of tests you lose nothing. – Daz Lewis Dec 22 '11 at 11:29
I agree, it's a little vague. Perhaps intellisense is involved. – Joshua Ramirez Mar 15 at 7:00
One example would be mocking. If you want to unit test a controller action, it's easier to create a "mock" object to pass around and assert against rather than trying to assert that some string was added to some dictionary or some dynamic field is set to some value - it is a similar concept to service contracts having one "Request" and one "Response" object, rather than taking multiple parameters. – nootn Mar 25 at 12:08

Similarities between ViewBag & ViewData :

Helps to maintain data when you move from controller to view. Used to pass data from controller to corresponding view. Short life means value becomes null when redirection occurs. This is because their goal is to provide a way to communicate between controllers and views. It’s a communication mechanism within the server call.

Difference between ViewBag & ViewData:

ViewData is a dictionary of objects that is derived from ViewDataDictionary class and accessible using strings as keys. ViewBag is a dynamic property that takes advantage of the new dynamic features in C# 4.0. ViewData requires typecasting for complex data type and check for null values to avoid error. ViewBag doesn’t require typecasting for complex data type.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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