Posts

Showing posts from August, 2013

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.But