很多人有时都会为虚拟目录中的web.config继承了主目录中的web.config而苦恼, 大部分主要是由于根目录中的web.config添加了httphandler、 httpmodule 引起的。 其实这个问题解决起来很简单,只将 httphandler httpmodule的声明添加到location中即可。
如下所示:
<configuration>
<location path="." allowOverride="true" inheritInChildApplications="false">
<system.web>
<httpModules>
<add name="UrlRewriteModule"
type="UrlRewritingNet.Web.UrlRewriteModule, UrlRewritingNet.UrlRewriter" />
</httpModules>
</system.web>
</location>
</configuration>
path 不用说指定的是一个目录
allowOverride 指是否可以将这个重写
inheritInChildApplications 指是否被子级应用程序继承
我遇到的问题是主目录中引用了DevExpress控件,结果在WebService中调用任何页面,都提示
未能加载文件或程序集“DevExpress.Web.ASPxGridView.v8.1, Version=8.1.1.0, Culture=neutral, PublicKeyToken=e0b364db0ebed33f”或它的某一个依赖项。系统找不到指定的文件
按如上的处理方法,解决了这个问题!
11-09