ViewData vs ViewBag

ViewData:-
========
1. ViewData is a dictionary object that is derived from ViewDataDictionary class.
2. ViewData is a property of ControllerBase class.
3. ViewData is used to pass data from controller to corresponding view.
4. It’s life lies only during the current request.
5. If redirection occurs then it’s value becomes null.
6. It’s required typecasting for getting data and check for null values to avoid error.

ViewBag:-
=======
1. ViewBag is a dynamic property that takes advantage of the new dynamic features in C# 4.0.
2. Basically it is a wrapper around the ViewData and also used to pass data from controller to corresponding view.
3.ViewBag is a property of ControllerBase class.
4. It’s life also lies only during the current request.
5. If redirection occurs then it’s value becomes null.
6.It doesn’t required typecasting for getting data

Comments

  1. can it is possible to send request from one action to another action using view data?

    ReplyDelete
  2. can it is possible to send request from one action to another action using view data?

    ReplyDelete

Post a Comment

Popular posts from this blog

List out different return types of a controller action method?

3-6 yr Experience Interview Questions in .Net Technologies

Explain what is the difference between View and Partial View?