What is difference between ViewBag and ViewData in ASP.NET MVC?
7736
07-Sep-2011
Updated on 22-Sep-2020
Chris Anderson
07-Sep-2011The 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.