Skip to content

Instantly share code, notes, and snippets.

@polatengin
Created October 17, 2016 09:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save polatengin/3202a4df0106fd84c91930d58b8b09a5 to your computer and use it in GitHub Desktop.
Save polatengin/3202a4df0106fd84c91930d58b8b09a5 to your computer and use it in GitHub Desktop.
Asp.Net uygulamalarında SessionState yönetimi
<configuration>
<system.web>
<sessionState mode="InProc" timeout="25" />
</system.web>
</configuration>
<configuration>
<system.web>
<sessionState mode="SqlServer"
sqlConnectionString="Integrated Security=SSPI;data source=TestSqlServer;"
timeout="25" />
</system.web>
</configuration>
<configuration>
<system.web>
<sessionState mode="StateServer"
stateConnectionString="tcpip=TestStateServer:42424"
timeout="25" />
</system.web>
</configuration>
<configuration>
<system.web>
<sessionState mode="InProc" timeout="25" />
</system.web>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment