ASP.NET Session_End event not firing

后端 未结 4 1268
南笙
南笙 2021-01-13 04:01

I\'m trying to get a database transaction to execute when an ASP.NET session ends (in simple WebForms app on Windows 2008 Server). I realize that many respondents will sugg

4条回答
  •  囚心锁ツ
    2021-01-13 04:17

    For others looking for a resolution and not finding an answer to this issue, I have seen a case where a project's Global.asax was defined with a code behind file referenced, but the events defined within the asax instead of the .cs file.

    In this case, it would fire the Session_Start, but never the Session_End, as if it was looking in the referenced .cs file.

    By removing the reference to the code behind file, Session_End started firing as expected.

提交回复
热议问题