I have a big problem with “Session_End”.
I need to fire “Session_End” by calling “Session.Abandon()”, creating and abandon a session inside the same request.
That means from the first request I need to abandon it, example:
When the user hit “http:// …/test.aspx”; the request will pass in “Session_Start” of “Global.asa” and then in “Page_Load” of “test.aspx” which contain the “Session.Abandon()” means that the request will ending the session by passing in Session_End…
The problem is: Ending the session without passing by Session_End (using debug the webApplication)