Posts

Angular Material Progress Spinner and its modes - explained with live ea...

Image

Best Courses on bestcourses.outtm.com or youtube.outtm.com

Image

PART 15 - Understand SIGNALR AND REQUIRED TERMS to create REAL TIME APPL...

Image

PART 1 - Understand .netcore file structure in detail with live easy exa...

Image

PART - 5 Understand USER SECRETS in .netcore in detail with live easy ex...

Image

Animated Cube with album pictures in pure css

Image

VIEW STATE IN ASP.NET

The most significant difference between programming for the web and programming for the desktop is state management - how you are able to store information for the particular amount of time or one can say lifetime of your application.This information can be of any type or of any level of complexity. In a desktop application there is  nothing to worry about storage because we have sufficient storage and can be used by only a user at a time but what about web application, there we are not sure about the users who make use of application (located at web server) at a time by stateless HTTP connection.So we have to do something in such a manner that our web application will be able to store as our desktop application works and that storage will be different for different users or one can say in the way the user wants. PROBLEM OF STATE In a windows application, users interact with the continuous running application.That is pretty simple and everything is done at single user level....