I need to know how to configure the .config to manage Session state in SQL Server
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
First you need to create a Session database. In order to do this:
Where ServerName is your server name. This will create this database ASPState Now the configuration on the web.config Add this sentence over
sqlCommandTimeout="7200" = 2hours and timeout="120" = 2hours If you need more options regarding aspnet_regsql you can take a look HERE |
|||
|
|
Additional options here: http://msdn.microsoft.com/en-us/library/ms972429.aspx |
|||
|
|
