ASP.NET Tutorial/Configuration/authorization — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 11:57, 26 мая 2010
Applying authorization requirements to a single file
<configuration>
<system.web>
<authentication mode="None" />
</system.web>
<location path="AdminPage.aspx">
<system.web>
<authentication mode="Windows" />
<authorization>
<allow users="DomainName\YourName" />
<deny users="*" />
</authorization>
</system.web>
</location>
</configuration>