ViewData vs ViewBag
ViewData:-
========
1. ViewData is a dictionary object that is derived from ViewDataDictionary class.
========
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
can it is possible to send request from one action to another action using view data?
ReplyDeletecan it is possible to send request from one action to another action using view data?
ReplyDelete