D
Dennis Bronstein
What is the best way to limit logons to a website? We assign a user ID and
password to each user. These are stored in the database (SQL Server). We
want to do two things:
1. Only allow one person to use a specific user ID at a time. So if I log
on as user ABC and then someone else tries to logon as ABC, they will not be
allowed to logon.
2. Limit the total number of users logged on at a given time. So say there
are 10 users and we want to only allow 3 to use the site at a time. So if 3
people are already logged on and a 4th person tries to log on, they will be
rejected.
Are there any "standard" ways to implement this kind of functionality?
Thanks,
Dennis
password to each user. These are stored in the database (SQL Server). We
want to do two things:
1. Only allow one person to use a specific user ID at a time. So if I log
on as user ABC and then someone else tries to logon as ABC, they will not be
allowed to logon.
2. Limit the total number of users logged on at a given time. So say there
are 10 users and we want to only allow 3 to use the site at a time. So if 3
people are already logged on and a 4th person tries to log on, they will be
rejected.
Are there any "standard" ways to implement this kind of functionality?
Thanks,
Dennis