T
TdarTdar
Hello,
using the location stuff, do i have to define this for each sub directory in
this directory also or is there something i can do to include the
subdirectories in the=:
<location path="SITE_ADMIN" >
<system.web>
<authorization>
<allow users="SADMIN" />
<deny users="*" />
</authorization>
</system.web>
</location>
would i have to this:
<location path="SITE_ADMIN/GIS" >
<system.web>
<authorization>
<allow users="SADMIN" />
<deny users="*" />
</authorization>
</system.web>
</location>
<location path="SITE_ADMIN/GIS/CITY" >
<system.web>
<authorization>
<allow users="SADMIN" />
<deny users="*" />
</authorization>
</system.web>
</location>
for every directory i have under that directory, because when a loged in
user browses a page that is in that subdirectory they get the log in screen
like they dont have premission to view but it is in the SITE_ADMIN and they
are in the SADMIN role.
?
using the location stuff, do i have to define this for each sub directory in
this directory also or is there something i can do to include the
subdirectories in the=:
<location path="SITE_ADMIN" >
<system.web>
<authorization>
<allow users="SADMIN" />
<deny users="*" />
</authorization>
</system.web>
</location>
would i have to this:
<location path="SITE_ADMIN/GIS" >
<system.web>
<authorization>
<allow users="SADMIN" />
<deny users="*" />
</authorization>
</system.web>
</location>
<location path="SITE_ADMIN/GIS/CITY" >
<system.web>
<authorization>
<allow users="SADMIN" />
<deny users="*" />
</authorization>
</system.web>
</location>
for every directory i have under that directory, because when a loged in
user browses a page that is in that subdirectory they get the log in screen
like they dont have premission to view but it is in the SITE_ADMIN and they
are in the SADMIN role.
?