MVC is not stateless , HTTP is. HTTP being stateless doesn’t mean it is fire and forget. The client does wait for the response. It is stateless in the sense that two successive requests have no relation whatsoever.
Read moreWhat is state in ASP.NET c#?
In an ASP NET application, state management in ASP NET is an object and preserves type state control . This is because ASP NET applications are basically stateless. In ASP NET, the information of users is stored and maintained till the user session ends.
Read moreWhat are the states in MVC?
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 more