What is a SQL Server Mode of Storing Session?

chinmay.sahoo

New member
• In this mode Session, state is s rializ d and stor d in a SQL Server database.

• SQL Server Session mode is more r liable and s cure session state management.

• Its keeps data in a centralized location ( atabase).

• We should use SQL server session mo e when we need to implement Session with some more security.

• If there happens to be frequent server Restart we can implement SQL server.

• This is perfect mode that fits in web farm and web garden scenarios (I have explained in details later).

• we can use SQL server Session mode when we need to share session between two different application
 
Back
Top