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.
-
LIVE
MDGgamin
3 hours ago🔴LIVE- Rumble Gaming To The MOON - Variety of Games & Chatting - #RumbleTakeover
724 watching -
27:24
Mr. Build It
5 days agoDECK DISASTER! How We Fixed a Botched Build
20.1K10 -
26:58
barstoolsports
4 hours agoZach Bryan Blocks All of Barstool | Stool Scenes
14.4K3 -
1:06:44
Talk Nerdy 2 Us
21 hours ago🔥 Hackers vs. The World: From Amazon breaches to FBI-confirmed Chinese telecom spying
2.38K11 -
1:24:20
Vigilant News Network
18 hours agoJoe Rogan Drops Shocking Election Claim | The Daily Dose
79.3K36 -
1:10:18
FamilyFriendlyGaming
17 hours ago $15.47 earnedCat Quest III Episode 2
80.9K1 -
20:07
DeVory Darkins
22 hours ago $15.56 earned"They Talking About Finance!" The View FRUSTRATED by NYC Mayor TRUTH BOMB
54.2K47 -
1:20:18
Steve-O's Wild Ride! Podcast
2 days ago $8.89 earnedThe Hawk Tuah Girl Is Really Becoming Successful! - Wild Ride #243
39K3 -
1:29:26
Game On!
19 hours ago $8.25 earnedJon Jones vs Stipe Miocic Heavyweight Title Fight | UFC 309 Preview
41.5K4 -
30:26
The Why Files
7 days agoThe Pascagoula UFO Incident | When Nightmares Come True
73.6K60