Mega Code Archive

 
Categories / ASP.Net Tutorial / Configuration
 

To allow more than one user

<configuration>      <system.web>        <authentication mode="Windows" />             <allow users="MyDomain\User1" />              <allow users="MyDomain\User2" />        </authorization>     </system.web> </configuration>  or you can use the following: <configuration>      <system.web>        <authentication mode="Windows" />             <allow users="MyDomain\User1, MyDomain\User2" />        </authorization>     </system.web> </configuration>