User636460510 posted
I am working on an ASP.Net web forms application.
I want the site to timeout after a certain period, which should be simple, however, I cannot seem to get this to happen as expected.
I have tried changing the timeout settings in web.config, as well as in IIS. I am in SQLServer Session Mode.
Code written in the Session_End function of the Global.asax file never executes, regardless of what settings I use for timeout.
Examining the session cookie and ASPStateTempSessions table in SQL Server indicate that the settings that I am changing in web.config are indeed changing the timeout values of the session, however, there is never anything to suggest that the site is ACTUALLY
timing out.
I do not know where else to look for timeout settings, or what may be preventing me from generating a timeout.