"Devin" <devin.cormier@gmail.comwrote in message
news:6b94f727-42d3-4647-8e74-51cb572485bb@26g2000hsk.googlegroups.com...
Quote:
Hi,
>
This might seem a little bit disjointed. My boss is suggesting I take
a certain approach to something. There is a private section of the
intranet (its essentially its own section as few users would have use
for it or even know of its existence) and when a user logs on to the
home page of this intranet site ASP should verify that they are
allowed to be there (based on them logging on to the network when they
logged on to their PC).
>
I suppose it could be done with folder permissions. I don't really
see how else though.
>
Any suggestions or questions about my question?
>
|
Yes folder permissions would be the way to achieve this. Turn off anonymous
access and turn on windows integrated. Create a Group in AD which
represents the set of users that should have access to this application and
grant that group read access on the folder and contents which holds the
applicaiton. Add the users that should have access to the Group.
If you are using a FQDN for the server then the users will need to add that
FQDN to their set of sites considered to be an intranet site (a simple host
name is assumed by IE to be an intranet site).
If your ASP code needs to discover which of the users is actually using the
app then you can use the AUTH_USER server variable.
--
Anthony Jones - MVP ASP/ASP.NET