Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Find web.config which should be located at C:\inetpub\wwwroot\AssertWeb
  2. Find the setting <sessionState> and alter the time span, which states time out period in minutes
  3. Restart IIS

 


Info

This is how web.config may look like:


<system.web>
   <sessionState mode="InProc" timeout="120" />
</system.web>

Note that there is a max timeout. In version 4.2.0 it is 120 minutes, and in version 4.2.1 240 minutes.

Beware that a reinstallation may overwrite the web.config file!

...