Actually i am new one of this ASP.NET.i have have one problem with session_end() in Global.aspx.whe n this session_end() is faired. I call the session.abandon () method.but my requirement is whenever i call the signout() method that time this session_end() is faired.please send ur replay as early as possible.if any mistakes in my query sorry don't mind.
please solve my problem
Collapse
X
-
Tags: None
-
That is a rather confusing article.
Session_End() is called whenever the session data is removed from memory.
That happens when you abandon() it in code, or the session_timeout occurs.
I don't think that it applies unles you use InProc as your SessionState, so using SQL to manage your sessions will change that.Comment
-
Originally posted by PlaterThat is a rather confusing article.
Session_End() is called whenever the session data is removed from memory.
That happens when you abandon() it in code, or the session_timeout occurs.
I don't think that it applies unles you use InProc as your SessionState, so using SQL to manage your sessions will change that.
You will not get a Session_End event unless your SessionID is recycled. This only happens when a new SessionID is generated. This only takes place if you are using an InProc Sessan. Also, there is no telling when the Session_End event is going to happen although the Session.Abandon will release the SessionID.
-FrinnyComment
Comment