deepinthecode.com
Dynamically Setting the Connection String for Session State on SQL Server - Deep in the Code
In ASP.NET, there are four ways to store Session State. The way I prefer to store it is using SQL Server. However, instead of storing it in the ASPstate database, which is the default way to store it on SQL Server, I choose to store it in the application database, which is a “custom SQL … Continue reading "Dynamically Setting the Connection String for Session State on SQL Server"
David Young