I saw the ViewBag in MVC 3. How's that different than ViewData in MVC 2?
Whatt's the difference between ViewData and ViewBag?
2117
04-Mar-2015
Anonymous User
04-Mar-2015ViewData & ViewBag objects
· ViewData
ViewData is a dictionary object that you put data into, which then becomes available to the view. ViewData is a derivative of the ViewDataDictionary class, so you can access by the familiar 'key/value' syntax.
· ViewBag
The ViewBag object is a wrapper around the ViewData object that allows you to create dynamic properties for the ViewBag.