Skip to content

Instantly share code, notes, and snippets.

@jordanfarrer
Created October 10, 2013 20:27
Show Gist options
  • Save jordanfarrer/6925029 to your computer and use it in GitHub Desktop.
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.
<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