导航

web.config authorization

Posted on 2010-04-13 08:55  杨彬Allen  阅读(310)  评论(0编辑  收藏  举报

 

代码
正確寫法
<authorization>
<deny users="?"/>
<allow users="*"/>
</authorization>

錯誤寫法
<authorization>
<allow users="*"/>
<deny users="?"/>
</authorization>