陈斌彬的技术博客

Stay foolish,stay hungry

web.config Authorization

正確写法

<authorization>
  <deny users="?"/>
  <allow users="*"/>
</authorization>

错误写法

<authorization>
  <allow users="*"/>
  <deny users="?"/>
</authorization>