Hi,
I'm confused about the session states of SQL Server sessions. Anyone can explain it please? Thanks.
Hi,
I'm confused about the session states of SQL Server sessions. Anyone can explain it please? Thanks.
If you refere to ASP.NET Session State using SQL Server then a session string is stored in a table in SQL Server. This is makes it possible to use the same session across multiple webservers. Otherwise when using ASP.NET InProc (In Process) session state, the system is storeing the session in a process on a singel maschine and can therefor not be used in a webfarm.
From MSDN: