I'm currently creating a website using Visual Studio 2010. I'm using the default membership schema in SQL Server 2008 for user authentication. Now I'm facing the following problem.
When a user logs out, the membership.IsOnline property of that user should be set to false. However that it is not happening; membership.IsOnline property of that user is still true.
I'm using the LoginStatus control to provide a logout link to the user.
I have tried to follow User.IsOnline = true even after FormsAuthentication.SignOut(). But results nothing.