Created
October 10, 2013 20:27
-
-
Save jordanfarrer/6925029 to your computer and use it in GitHub Desktop.
The necessary elements in a web.config to use a ASP.NET State Server instead of the default InProc mode.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<system.web> | |
<sessionState | |
mode="StateServer" | |
stateConnectionString="tcpip=localhost:42424" | |
cookieless="false" | |
timeout="120" /> | |
</system.web> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment