我在下面遇到此错误
HTTP错误500.19 - 内部服务器错误 无法访问请求的页面,因为页面的相关配置数据无效。
详细错误信息
模块身份验证
通知AuthenticateRequest
Handler ExtensionlessUrl
处理程序集成-4.0
错误代码0x80070021
配置错误此配置部分不能在此路径中使用。 当该部分被锁定在父级别时会发生这种情况。锁定是通过 default(overrideModeDefault =“Deny”),或由location标记显式设置 overrideMode =“Deny”或遗留allowOverride =“false”。
这是我的配置文件
<configuration>
<connectionStrings>
<add name="DBConnection" connectionString="data source=12.12.16.117;Initial Catalog=web_prof_global; User ID=1111;Password=1111;persist security info=True;packet size=4096" providerName="System.Data.SqlClient" />
<add name="DBConnectionSf" connectionString="data source=12.12.16.117;Initial Catalog=webCommon; User ID=1111;Password=1111;persist security info=True;packet size=4096" providerName="System.Data.SqlClient" />
</connectionStrings>
<system.web>
<compilation debug="false" targetFramework="4.0" />
</system.web>
<system.webServer>
<security>
<authentication>
<basicAuthentication enabled="true" />
</authentication>
</security>
<modules runAllManagedModulesForAllRequests="true" />
<defaultDocument>
<files>
<add value="s-f.aspx" />
</files>
</defaultDocument>
</system.webServer>
</configuration>
你能帮忙吗