ASP 正在第二页中查找第一页模块

发布于 2024-12-12 02:04:04 字数 349 浏览 0 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

氛圍 2024-12-19 02:04:04

这是由 ASP.NET 配置继承(如 www.name)引起的。 com/Another 是 www.name.com 的子目录,它将继承 www.name.com 的所有 web.config 设置。

尝试添加:

<modules>
    <remove name="MyModule" />
</modules>

到 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:

<modules>
    <remove name="MyModule" />
</modules>

To www.name.com/Another's web.config.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文