0

Persistent ASP Session store can reside in either "tempdb" or "aspstate" database in SQL Server 2005. The sqlConnectionString parameter, in sessionState doesn't specify this (example below). How is this resolved?

<sessionState mode="SQLServer" sqlConnectionString="Server=mysqlserver;Integrated Security=SSPI;" cookieless="false" timeout="20" />
The Muffin Man
  • 19,585
  • 30
  • 119
  • 191

1 Answers1

0

I think within sqlConnectionString you need another key/value pair:

Initial Catalog=myDataBase;

Check out this page here

If that doesn't work then it might be:

Database=myDataBase;

But I think you need the first example.

The Muffin Man
  • 19,585
  • 30
  • 119
  • 191