How to use ASP.NET Session State Server

StateServer mode stores session state in a process referred to as the ASP.NET state service, that is separate from the ASP.NET worker process or IIS application pool. Using this mode ensures that the session state is preserved if the Web application is restarted and also makes the session state available to multiple Web servers in a Web farm.

The below example shows a configuration setting for StateServer mode where session state is stored on local:

<configuration>

  <system.web>

    <sessionState mode="StateServer"

      stateConnectionString="tcpip=127.0.0.1:42424"

      cookieless="false"

      timeout="20"/>

  </system.web>

</configuration>
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

SQL server- network related or instance-specific error happened while connection establishing

  Instance-specific or network related error happening while connecting to SQL server   Please...

OleDB connection string examples

OleDB connection string examples MS Access (Jet) "PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA...

Do you allow custom COM components?

Do you allow custom COM components? We are not offering to install the custom COM components...

Error when accessing a WCF services

Error when accessing a WCF services Error when accessing a WCF service: "IIS specified...

How to cache static contents to client with UseMaxAge?

You can consider to caches static contents to the client with UseMaxAge if your website has too...

Powered by WHMCompleteSolution