Create
a Login module which will log users in and also we can able to create a new
user, if the same login is attempted from another machine while the session is
in progress, there should be a message that "This User has already logged
in from
Loading
Akkiraju IvaturiPosted Aug 21, 2012, 9:12 PM
HttpContext.Current.Userproperty is not null then they are logged in. AndIdentity.IsAuthenticatedis true.You need to track IP address of the user when he logins for the first time and store it in some repository so that if you find the user is already logged in then you can read the ip address from the persistent store.