0
Setting:
I store the Session
of the user to keep it logged in to the system, but something is happening that in 10 minutes it is undone because the Session
expired.
But so much in the Web.Config
how much in the Session State is set to 120 minutes and yet it expires.
Is there any process of IIS to clean up the Session
, independent of these parameters ?
vc put this way <sessionState timeout="120"></sessionState> ?
– HudsonPH
The
IIS
has a configuration to recycle the Application Pool in a certain time interval, already checked there, in the properties of Apppool as are the settings?– Ricardo Pontual
@Ricardopunctual would be 'Disable Recycling for Configuration Changes' ?
– Igor Carreiro
It’s in the Apppool settings, in "Recycling", there’s a field in "Regular time interval (minutes)" where you set the time. Zero means you never recycle.
– Ricardo Pontual