asp.net – 在web.config location元素中无法识别InheritInChildApplications属性

前端之家收集整理的这篇文章主要介绍了asp.net – 在web.config location元素中无法识别InheritInChildApplications属性前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试过包装我的
<system.web>

<location path="." InheritInChildApplications="false">

喜欢这个

<location path="." InheritInChildApplications="false">
<system.web>...</system.web>
</location>

但是VS 2010 Web Developer Express不断说

The ‘InheritInChildApplications’ attribute is not allowed

当我运行我的网络应用程序时,有一个错误

HTTP Error 500.19 – Internal Server Error
The requested page cannot be accessed because the related configuration data for the page is invalid.

Config Error Unrecognized attribute ‘InheritInChildApplications’.

我的配置:ASP.NET 4.0 RTM,VS 2010,IIS 7.5

解决方法

不应该是小写“i”吗?
<location path="." inheritInChildApplications="false">

我已经使用它成功地在过去的4或5个项目,我曾经。我的规格类似于你的。我还在使用.NET 4 RC。我还在位置内包括system.webServer设置。

祝你好运,

丰富

原文链接:https://www.f2er.com/aspnet/254293.html

猜你在找的asp.Net相关文章