我需要修改 web.config 文件以确保 First.aspx 只能由订阅者组的成员访问。
什么是正确的:
一个
<location path="First.aspx">
<system.web>
<authorization>
<allow roles="Subscribers"/>
<deny users="*"/>
</authorization>
</system.web>
</location>
或者
乙
<location path="First.aspx">
<system.web>
<authorization>
<deny users="*"/>
<allow roles="Subscribers"/>
</authorization>
</system.web>
</location>
为什么?