2
I have an application in Web Forms that stores the session when the user logs in, with a time limit of 21 minutes without using the application to expire the session:
<sessionState timeout="21" />
Performing tests on the local machine, the limit works perfectly, but we have several customers using in production, with a publication for each customer using the same settings in IIS, including configured the same 21 minutes.
What is occurring is that in some clients the session is expiring before the time set.
Checking the code, I couldn’t find anything that might be implicating this, because the Session.Abandon()
, is being called just at the application logout, as it should really be.
I wonder if anyone’s been through it, and if they’ve been able to solve the problem?
Eduardo I appreciate your reply, but the IIS is configured with the same 21 minutes of config.
– Elvis Lima
You are on some Webfarm or some PAAS service?
– EduardoFernandes
We do not use Webfarm or PAAS.
– Elvis Lima