Premium Only Content

Part 6 ViewData and ViewBag in mvc
In this video we will discuss
1. What is ViewData
2. What is ViewBag
3. Difference between ViewData and ViewBag
Both ViewData and ViewBag are used to pass data from a controller to a view. ViewData is a dictionary of objects that are stored and retrieved using strings as keys. The syntax of ViewData is very similar to that of ViewState, SessionState and ApplicationState.
// Storing data in ViewData
ViewData["YourData"] = "SomeData";
// Retrieving data from ViewData
string strData = ViewData["YourData"].ToString();
ViewData does not provide compile time error checking. For example, if you mis-spell the key names you wouldn't get any compile time error. You get to know about the error only at runtime.
ViewBag uses the dynamic feature that was introduced in to C# 4. It allows an object to have properties dynamically added to it. Using ViewBag the above code can be rewritten as below.
// Storing data in ViewBag
ViewBag.YourData = "SomeData";
// Retrieving data from ViewBag
string strData = ViewBag.YourData;
Just like ViewData, ViewBag does not provide compile time error checking. For example, if you mis-spell the property name, you wouldn't get any compile time error. You get to know about the error only at runtime.
Internally ViewBag properties are stored as name/value pairs in the ViewData dictionary.
Please Note: To pass data from controller to a view, It's always a good practice to use strongly typed view models instead of using ViewBag & ViewData. Strongly typed view models provide compile time error checking. We will discuss view models in a later video session.
-
1:00:24
Jeff Ahern
4 hours ago $3.16 earnedThe Sunday Show with Jeff Ahern
16K11 -
LIVE
OhHiMark1776
1 hour ago🟢 09-28-25 ||||| Act 3 Continue ||||| Baldur's Gate 3 (2023)
56 watching -
LIVE
DooM49
1 hour ago12 Days until Battlefield 6
60 watching -
17:23
Russell Brand
2 days agoThey couldn't handle this...
121K308 -
18:18
DeVory Darkins
21 hours ago $35.76 earnedPortland gets NIGHTMARE NEWS as Trump orders Troops to crush violent rioters
56.9K322 -
1:32:21
JTtheSG
1 hour agoLIVE Replay - Ready To Play VOID BREAKER
1.29K -
LIVE
DoldrumDan
4 hours agoNEW STREAM SCHEDULE 3PM EST TO 7PM EST EVERY DAY
172 watching -
LIVE
Sgt Wilky Plays
3 hours agoSunday Finals | Regiment Donor Drive
45 watching -
LIVE
Ouhel
5 hours agoSUNDAY | Active Matter | Exploring the postapocalyptic | O'HELL LIVE
60 watching -
LIVE
Astral Doge Plays!
6 hours agoFinal Fantasy IX ~LIVE!~ Iifa Tree Visitation Hours
22 watching