我在默认IIS站点的web.config文件中有以下代码。
<httpModules> <add type="MDL.BexWebControls.Charts.ChartStreamHandler,Charts" name="ChartStreamHandler"/> </httpModules>
然后当我设置和浏览到一个虚拟目录我得到这个错误
无法加载文件或程序集“图表”或其依赖项之一。该系统找不到指定的文件。
虚拟目录从默认的web.config继承模块。
你如何阻止这种继承?
解决方法
我找到了答案。将HttpModule部分包含在位置标签中,并将inheritInChildApplications属性设置为false。
<location path="." inheritInChildApplications="false"> <system.web> <httpModules> <add type="MDL.BexWebControls.Charts.ChartStreamHandler,Charts" name="ChartStreamHandler"/> </httpModules> </system.web> </location>
现在任何虚拟目录都不会继承此位置部分中的设置。
@GateKiller这不是另一个网站,它的虚拟目录,所以继承确实发生。
@petrich我使用< remove />命中并错过了结果。我必须记住将其添加到每个虚拟目录中,这是一个痛苦。