Showing posts with label Cache API. Show all posts
Showing posts with label Cache API. Show all posts

Leveraging Sessions in ASP.Net Development

HTTP is a stateless protocol which means that whenever a new request is released from the client to the server, the state information of the previous request is lost.

You can store and handle state in several ways in asp.net development. Session is among those objects that will help you. Other than Session, Caching and Application objects are also available.