Moving from In Process Session to SQL Server Session State

  • Thread starter Thread starter DNB
  • Start date Start date
D

DNB

Presently we use InProc session state to session variables in our
application.
I was just thinking if its is easy to switch from InProc to SQL server
session state.
As per my undersrtanding we need to do following:
1. Configuring SQL Server to Store a Session State
2. Configuring the Web Site to Store a Session State i.e. The <sessionState>
tag of web.config. There is no code change


Thanks
DNB
 
If you are storing objects in the Session you may have to ensure they are
serializable, or marked as such.
 
Back
Top