标签:
今天在IIS中配置web站点的,使用Windows身份认证,怎么设置也不起作用,默认配置文件是这样的:
<authentication mode="Windows" />
但是我们还必须加上禁止匿名用户登录,才能实现Windows身份认证登陆功能,正确的配置应该是这样的:
<authentication mode="Windows" />
<authorization>
<deny users="?" />
</authorization>
标签:
原文地址:http://www.cnblogs.com/lishidefengchen/p/4316203.html