Restrict Multiple Logins

Restrict Multiple Logins

am 24.01.2005 02:57:49 von Sudheer

Hi All,

We need to restrict multiple users login to the system. If one user is
online with one userID, we need to show the message "This user already logs
in to the system" to the other user who tries to login with the same userID.
We are using C#.

Please help us how we can do this.


Thanks,
Sudheer.

Re: Restrict Multiple Logins

am 24.01.2005 03:14:26 von nomailreplies

Add the login userID's to a "loggedin" database table,
and check whether the current userID used to login
exists in the table.

For that to work, however, you need to insure that users
are recorded as logged out when they exit the application.

You can do that by checking if their sessions have expired,
and deleting the userID record from the table.


Linking the SessionID to the userID should be enough.



Juan T. Llibre
ASP.NET MVP
===========
"Sudheer" wrote in message
news:epyZWgbAFHA.2180@TK2MSFTNGP10.phx.gbl...
> Hi All,
>
> We need to restrict multiple users login to the system. If one user is
> online with one userID, we need to show the message "This user already
> logs in to the system" to the other user who tries to login with the same
> userID. We are using C#.
>
> Please help us how we can do this.
>
>
> Thanks,
> Sudheer.
>

Re: Restrict Multiple Logins

am 24.01.2005 16:58:25 von Do Quyet Tien

sometime your users are locked out because their last session still not
expired, often in 15 minutes. Except they was clicked Logout link before.

"Juan T. Llibre" wrote in message
news:u3dhrpbAFHA.2316@TK2MSFTNGP15.phx.gbl...
> Add the login userID's to a "loggedin" database table,
> and check whether the current userID used to login
> exists in the table.
>
> For that to work, however, you need to insure that users
> are recorded as logged out when they exit the application.
>
> You can do that by checking if their sessions have expired,
> and deleting the userID record from the table.
>
>
> Linking the SessionID to the userID should be enough.
>
>
>
> Juan T. Llibre
> ASP.NET MVP
> ===========
> "Sudheer" wrote in message
> news:epyZWgbAFHA.2180@TK2MSFTNGP10.phx.gbl...
> > Hi All,
> >
> > We need to restrict multiple users login to the system. If one user is
> > online with one userID, we need to show the message "This user already
> > logs in to the system" to the other user who tries to login with the
same
> > userID. We are using C#.
> >
> > Please help us how we can do this.
> >
> >
> > Thanks,
> > Sudheer.
> >
>
>