我们目前正在将我们的Web服务从2003服务器迁移到2008服务器。我们在Web配置中启用了身份验证,启用后,我们会看到一个弹出窗口供我们登录。但我们无法弄清楚我们要登录的内容,或者授予访问权限的位置。
任何人都可以提示我们需要注意什么?
我们在网络配置中使用的代码是 -
<configSections>
<section name="customBasicAuthentication" type="Thinktecture.CustomBasicAuthentication.CustomBasicAuthenticationSection, Thinktecture.CustomBasicAuthenticationModule"/>
</configSections>
<customBasicAuthentication enabled="true" cachingEnabled="true"
cachingDuration="15" requireSSL="false"/>
<authentication mode="None"/>
<authorization>
<deny users="?"/>
</authorization>
<httpModules>
<add name="CustomBasicAuthentication"
type="Thinktecture.CustomBasicAuthentication.CustomBasicAuthenticationModule,
Thinktecture.CustomBasicAuthenticationModule"/>
</httpModules>