问题描述
我已经试过我的包裹
<system.web>
与
<location path="." InheritInChildApplications="false">
像这样
<location path="." InheritInChildApplications="false">
<system.web>...</system.web>
</location>
不过VS 2010 Web开发前preSS口口声声说
But VS 2010 Web Developer Express keeps saying
在'InheritInChildApplications'属性是不允许的。
当我跑我的web应用程序有一个错误:
When I run my web app there's an error:
HTTP错误500.19 - 内部服务器错误结果
所请求的页面无法访问,因为该页的相关配置数据无效。
配置错误无法识别的属性'InheritInChildApplications。
Config Error Unrecognized attribute 'InheritInChildApplications'.
我的配置:ASP.NET 4.0 RTM,VS 2010,IIS 7.5
My configuration: ASP.NET 4.0 RTM, VS 2010, IIS 7.5
推荐答案
难道不应该是一个小写的i?
Shouldn't it be a lowercase 'i'?
<location path="." inheritInChildApplications="false">
我已经成功地使用它的最后4个或5个项目我已经做的。我的规格与你相似。我仍在使用.NET 4 RC。我还包括位置在system.webServer设置。
I have been using it successfully on the last 4 or 5 projects I have worked on. My spec is similar to yours. I'm still using .NET 4 RC. I also include the system.webServer settings within location.
祝你好运,
富
这篇关于InheritInChildApplications属性不是在web.config中的位置识别元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!