Session configured in Web.Config and IIS Session State is expiring ahead of time

0

Scenery:

I store the Session of the user to keep it logged in, but something is happening that in 10 minutes it is logged off because Session has expired.

But in both% w / o% and Session State is parameterized for 120 minutes and still expires.

Is there a IIS process that wipes Web.Config , regardless of these parameters?

    
asked by anonymous 25.10.2018 / 16:54

1 answer

1

120 minutes in config will look like this:

<configuration>
  <system.web>
     <sessionState timeout="120"></sessionState>
  </system.web>
</configuration>
    
25.10.2018 / 17:11