Thursday

Session Management with SQL Server

Hello Folks! Session is gonna be the topic of this entry.

So,what session is? A session is the period of time a user interacts with your Web application. Because HTTP is stateless protocol, therefore if an information(e.g.UserName) has to be kept along the period of time, a user is accessing a web application, you have to store that information into a Session Object.

ASP.Net provides 3 different methods to maintain a state.

1. In-Proc (In Process)
2. SQL Server
3. State Server


For more info how to set up SQL Sever session state, please visit here

No comments: