ASP 正在第二页中查找第一页模块
我有一个 asp.net mvc 3 应用程序 (www.name.com),并将自定义模块添加到 web.config:
<modules runAllManagedModulesForAllRequests="true">
<add name="MyModule" type="Modules.MyModule" />
</modules>
当我从此应用程序运行第二个应用程序 (www.name.com/Another) 时,出现错误: 无法加载类型“Modules.MyModule”。但我在第二个应用程序中不需要这个模块,只在第一个应用程序中需要。有什么解决办法吗?
I have one asp.net mvc 3 application (www.name.com) with custom module added to web.config:
<modules runAllManagedModulesForAllRequests="true">
<add name="MyModule" type="Modules.MyModule" />
</modules>
When I run from this application second application (www.name.com/Another) I get error:
Could not load type 'Modules.MyModule'. But I don't need this module in second app, only in first. Any solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是由 ASP.NET 配置继承(如 www.name)引起的。 com/Another 是 www.name.com 的子目录,它将继承 www.name.com 的所有 web.config 设置。
尝试添加:
到 www.name.com/Another 的 web.config。
This is caused by ASP.NET configuration inheritance, as www.name.com/Another is a subdirectory of www.name.com it will inherit all of the web.config settings of the www.name.com aswell.
Try adding:
To www.name.com/Another's web.config.