Thanks.
Jay Scarbrough
I hope the following link will be of help:
http://support.microsoft.com/support/kb/articles/q308/1/57.asp
This posting is provided "AS IS" with no warranties, and confers no rights. You assume all risk for your use. © 2001 Microsoft Corporation. All rights reserved.
<none> wrote in message news:#VEu13FbBHA.1360@tkmsftngp04...
<http://www.aspng.com/quickstart/aspplus/doc/webvalidation.aspx>
--Das.
<none> wrote in message news:#VEu13FbBHA.1360@tkmsftngp04...
I need something like this:
MyWeb
default.aspx - everybody can access it
Directory1 - Jake and Robert can access
Directory2 - Erik and Jake can access
"Radomir (MSFT)" <radomir...@microsoft.com> wrote in message
news:WVfyhNG...@cppssbbsa01.microsoft.com...
<configuration>
<system.web>
<authentication mode="Forms" >
<forms loginUrl="login.aspx" name=".ASPNETAUTH" protection="None" path="/" timeout="20" >
</forms>
</authentication>
<!-- the following authorization section is for the all files in this application except for which you have not explicitly specified another setting. -->
<authorization>
<deny users="?" />
</authorization>
</system.web>
<!-- the following authorization section is for only default1.aspx page which resides in the same dir as that of this config file. -->
<location path="default1.aspx">
<system.web>
<authorization>
<allow users ="*" />
</authorization>
</system.web>
</location>
<!-- the following authorization section is for all the files that are in a subdirectory called "subdir1". They allow access to Jake and Robert and deny to
everyone else-->
<location path="subdir1">
<system.web>
<authorization>
<allow users ="Jake, Robert" />
<deny users ="*" />
</authorization>
</system.web>
</location>
</configuration>
"Radomir (MSFT)" <radomir...@microsoft.com> wrote in message
news:ILxfhaR...@cppssbbsa01.microsoft.com...