本地运行别人的程序的时候,跳出来匿名认证无效,在此记录下,以便以后有需要可以再次查看解决办法
解决:
修改解决方案中的IIS EXPRESS配置文件
显示所有应用程序==选中当前项目==配置
<location path="Shop.Web">
<system.webServer>
<security>
<authentication>
<anonymousAuthentication enabled="true" /> //此处把false改成true
<windowsAuthentication enabled="false" />
</authentication>
</security>
</system.webServer>
</location>