A: 

just put a field for users like IS_LOGOUT_BUTTON_PRESSED typeof(bool) default false if the user click LogOut set it TRUE. if the user closes browser, it will stay false. Then you can see what user did.

Serkan Hekimoglu
thanks,how this variable helps to know the user session is available or expired.
A: 

I am afraid that you are tilting against windmills.

You will notice that the sql providers implement the 'users online' by simply updating last activity in most all provider methods (and subsequently the stored procedures) and then using a predefined 'online time window' to determine if the user may still be online.

To implement an authoritative 'is_online' flag would require that you have complete control over the user's means of starting a session and ending a session, which you do not and can not do due to both the nature of the browser ui and the way that sessions and ticket expirations are bumped.

So you can never really be sure whether a user is online or not, rendering any efforts you have made to track this metric unreliable.

And unreliable data is often of less value than no data at all.

I am quite certain that you will find nothing but frustration in attempting to apply an absolute, as described in your question, to the stateless and freeform nature of sessions and tickets.

Sorry I have not better news.

Sky Sanders