Problem with Web Applications

Web Applications are natively statesless, means once a web page renders from server to client, nothing remains on server and the next time user submits the page you have to create the page again.

ASP.NET provides following solutions to solve this problems:

* Viewstate

* Session Variables

* Application Variables...