2

file

c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\CONFIG\machine.config

doesn't have this element. Where these options are keeping?

Wachburn
  • 2,842
  • 5
  • 36
  • 59

1 Answers1

3

Default settings for <sessionSate> is not explicitly configured in the Machine.config file or in the root Web.config file. The default values are documented in MSDN and I am quoting it below

<sessionState 
   mode="InProc" 
   stateConnectionString="tcpip=127.0.0.1:42424" 
   stateNetworkTimeout="10" 
   sqlConnectionString="data source=127.0.0.1;Integrated Security=SSPI" 
   sqlCommandTimeout="30" 
   customProvider="" 
   cookieless="UseCookies" 
   cookieName="ASP.NET_SessionId" 
   timeout="20" 
   allowCustomSqlDatabase="false" 
   regenerateExpiredSessionId="true" 
   partitionResolverType="" 
   useHostingIdentity="true">
   <providers>
      <clear />
   </providers>
</sessionState>
Ramesh
  • 13,043
  • 3
  • 52
  • 88