deepinthecode.com
Storing Session State for an ASP.NET Site in a SQL Server Database - Deep in the Code
When using session state in an ASP.NET Web application, you have several options. If you want to store it in your application database, as opposed to the ASPstate database (created at the command line with “aspnet_regsql -S [server] -E -ssadd -sstype c -d ASPstate”), I have scripted the database objects and stored them in GitHub … Continue reading "Storing Session State for an ASP.NET Site in a SQL Server Database"
David Young