Limit site acces to 18 users.

  • Thread starter Thread starter george d lake
  • Start date Start date
G

george d lake

Hi,
I need to limit an Intranet site to 18 users. Of the 18, 17 are "Domain
Users" and 1 is from "DepartmentX Users"
What would be the best way to do this?


Thanks
 
Count Sessions.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 
Just to refresh my memory,
If I have a user connected to my intranet site, that is 1 session. If he
opens a page that has 20 images and an iframe, that is still 1 session.
If he opens a second browser and goes to the site, that is still one
session.

Am I correct on this?
 
Not exactly. The "second browser" question depends upon the browser being
used. The simplest thing to do is to create an Application-level variable,
and in the Session_OnStart increment it, and the Session_OnEnd, decrement
it.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 
Back
Top