ASP.NET-internat身份验证默认在webconfig中配置的代码是这样的

<system.web>
<compilation debug="true" targetFramework="4.5.1" />
<httpRuntime targetFramework="4.5.1" />
<authentication mode="Windows" />
<authorization>
<deny users="?" />
</authorization>
</system.web>
05-11 17:24