Avoid concurrent login (logout former login session) in ASP.net membership

Posted by Billy on Stack Overflow See other posts from Stack Overflow or by Billy
Published on 2010-01-08T06:33:16Z Indexed on 2010/03/15 19:29 UTC
Read the original article Hit count: 842

Filed under:
|

I am learning the ASP.net membership feature.

I am wondering how I can implement so that later login session logout former login session to avoid concurrent login. I know how to check whether the user is online (by Membership.IsOnline()) and logout the current user (by FormsAuthentication.SignOut()). But I don't know how to logout the previous login session.

Any code or reference that I can read?

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about asp.net-membership