我试过包装我的
<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设置。
祝你好运,
丰富