SyntaxFix
Write A Post
Hire A Developer
Questions
🔍
[.net] What's the difference between ViewData and ViewBag?
Home
Question
What's the difference between ViewData and ViewBag?
ViewData
ViewData is used to pass data from controller to view
It is derived from ViewDataDictionary class
It is available for the current request only
Requires typecasting for complex data type and checks for null values to avoid error
If redirection occurs, then its value becomes null
ViewBag
ViewBag is also used to pass data from the controller to the respective view
ViewBag is a dynamic property that takes advantage of the new dynamic features in C# 4.0
It is also available for the current request only
If redirection occurs, then its value becomes null
Doesn’t require typecasting for complex data type
Examples related to
.net
•
You must add a reference to assembly 'netstandard, Version=2.0.0.0
•
How to use Bootstrap 4 in ASP.NET Core
•
No authenticationScheme was specified, and there was no DefaultChallengeScheme found with default authentification and custom authorization
•
.net Core 2.0 - Package was restored using .NetFramework 4.6.1 instead of target framework .netCore 2.0. The package may not be fully compatible
•
Update .NET web service to use TLS 1.2
•
EF Core add-migration Build Failed
•
What is the difference between .NET Core and .NET Standard Class Library project types?
•
Visual Studio 2017 - Could not load file or assembly 'System.Runtime, Version=4.1.0.0' or one of its dependencies
•
Nuget connection attempt failed "Unable to load the service index for source"
•
Token based authentication in Web API without any user interface
Examples related to
asp.net-mvc-3
•
Better solution without exluding fields from Binding
•
IIs Error: Application Codebehind=“Global.asax.cs” Inherits=“nadeem.MvcApplication”
•
Can we pass model as a parameter in RedirectToAction?
•
return error message with actionResult
•
Why is this error, 'Sequence contains no elements', happening?
•
Failed to load resource: the server responded with a status of 500 (Internal Server Error) in Bind function
•
500.19 - Internal Server Error - The requested page cannot be accessed because the related configuration data for the page is invalid
•
String MinLength and MaxLength validation don't work (asp.net mvc)
•
How to set the value of a hidden field from a controller in mvc
•
How to set a CheckBox by default Checked in ASP.Net MVC
Examples related to
difference
•
Calculate time difference in minutes in SQL Server
•
Java 8: Difference between two LocalDateTime in multiple units
•
Differences between Oracle JDK and OpenJDK
•
Android difference between Two Dates
•
Difference between IsNullOrEmpty and IsNullOrWhiteSpace in C#
•
Get the time difference between two datetimes
•
What is the difference between JVM, JDK, JRE & OpenJDK?
•
What is the difference between bottom-up and top-down?
•
What's the difference between ViewData and ViewBag?
Examples related to
viewbag
•
Updating PartialView mvc 4
•
How to use a ViewBag to create a dropdownlist?
•
How ViewBag in ASP.NET MVC works
•
How to create own dynamic type or dynamic object in C#?
•
Pass a simple string from controller to a view MVC3
•
How to display a list using ViewBag
•
How do I access ViewBag from JS
•
The name 'ViewBag' does not exist in the current context
•
What's the difference between ViewData and ViewBag?
Examples related to
viewdata
•
Html.HiddenFor value property not getting set
•
What's the difference between ViewData and ViewBag?
•
There is no ViewData item of type 'IEnumerable<SelectListItem>' that has the key 'xxx'
•
Pass Additional ViewData to a Strongly-Typed Partial View