State Management In ASP.NET MVC
Read moreWhat is application state in MVC?
Application state is a data repository available to all classes in an ASP.NET application . Application state is stored in memory on the server and is faster than storing and retrieving information in a database.
Read moreWhat is view state in ASP.NET MVC?
View state is the method that the ASP.NET page framework uses to preserve page and control values between round trips . When the HTML markup for the page is rendered, the current state of the page and values that must be retained during postback are serialized into base64-encoded strings.
Read moreWhat is state management technique in MVC?
State Management techniques in ASP.Net MVC
Read moreHow do we maintain session state in MVC?
ASP.NET MVC provides three ways (TempData, ViewData and ViewBag ) to manage session, apart from that we can use session variable, hidden fields and HTML controls for the same.
Read moreWhat are the different types of state management techniques in MVC?
State Management In ASP.NET MVC
Read moreWhat is ViewState C#?
View State is the method to preserve the Value of the Page and Controls between round trips . It is a Page-Level State Management technique. View State is turned on by default and normally serializes the data in every control on the page regardless of whether it is actually used during a post-back.
Read more