i am very much new to MVC...In ASP .Net there was state management technique where viewstate or cookies were stored in client and session stored in server. Similarly we have Viewbag,ViewData and TempData in MVC(cookies and sessions are also there).I know the syntaxes like from controller ViewData stored as
ViewData["Foo"] = "bar";
ViewBag.Foo = "bar";
and in the corresponding view it is fetched as
ViewData["Foo"] = "bar";
@ViewBag.Foo
All I want to know is that where are ViewData and ViewBag stored(client or server or someplace else)?? Please forgive me if it is a irrelevant question,,,,,