Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Per Seat Licences

Status
Not open for further replies.

ihoult

Programmer
Dec 17, 2003
7
GB
Hi,

I’ve got a web application that runs on an intranet, ASP pages as the user interface, VB6 business layer and an SQL Server database.

Is there anyway that I can restrict the number of users who can use the site at any one time? Users are not connecting anonymously, if that helps.

Thanks for any help.
Iain
 
Why not try using an Application level variable in ASP to monitor the number of users. Add one to the variable in the Session_onStart, and remove in Session_OnEnd.

You can then disable the log in when the number of users exceeds the required number.

 
forum333 "Microsoft: Active Server Pages (ASP) Forum" is a better forum for this question tho MaddogC's reply is a valid one.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top