What is difference between Viewbag and Viewdata in ASP.NET MVC?
Samir Bhogayta
The basic difference between ViewData and ViewBag is that in ViewData instead creating dynamic properties we use properties of Model to transport the Model data in View and in ViewBag we can create dynamic properties without using Model data.