如何在iis7.5和windows7中运行asp.net网站
我正在尝试从 iis7.5 运行我的网站,并且我使用的是 windows7 操作系统。
浏览网站后,出现这样的错误...
此配置部分不能在此路径中使用。当该部分被锁定在父级别时,就会发生这种情况。锁定可以是默认设置 (overrideModeDefault="Deny"),也可以通过位置标记使用 overrideMode="Deny" 或旧的allowOverride="false" 显式设置。
我该如何解决这个问题...请告诉我
I am trying to run my website from iis7.5 and i am using windows7 OS.
after browsing the website, it gives error like this...
This configuration section cannot be used at this path. This happens when the section is locked at a parent level. Locking is either by default (overrideModeDefault="Deny"), or set explicitly by a location tag with overrideMode="Deny" or the legacy allowOverride="false".
how can i resolve this... please tell me
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
C:\Windows\system32\inetsrv\config\applicationHost.config
->
->
:将属性
<... overrideModeDefault="Deny" ...>
更改为Allow
在需要的地方(处理程序、模块……)。或者使用 Microsoft Web Platform Installer 2.0 来为您完成此操作。
我认为也有一些命令行工具可以实现这一点。
C:\Windows\system32\inetsrv\config\applicationHost.config
-><configSections>
-><sectionGroup name="system.webServer">
:Change the attributes
<... overrideModeDefault="Deny" ...>
toAllow
where needed (handlers, modules, ...).or use the Microsoft Web Platform Installer 2.0 that will do it for you.
There are some command line tools for that as well I think.