asp.net 应用程序已移动 - 未找到命名空间

发布于 2024-10-21 17:53:48 字数 405 浏览 2 评论 0原文

我在 wwwroot 的子目录中安装了 Umbraco。 一切顺利。 现在我将 Umbraco 安装的所有文件和文件夹从子目录移动到 wwwroot。 当我尝试加载后端时出现错误:

CS0246:类型或命名空间名称 找不到“UmbracoMembership” (您是否缺少 using 指令或 程序集参考?)

现在,UmbracoMembership 是一个自定义用户控件的类,它驻留在 bin 文件夹中的 Membership.dll 文件中。

搬家之前一切正常。我猜这与 asp.net 寻找程序集的位置有关(而不是 Umbraco 特定问题),但我不知道在哪里以及如何解决这个问题。

谢谢你! -埃拉德

I had an installation of Umbraco in a subdirectory of wwwroot.
Everything worked well.
Now I moved all the files and folders of the Umbraco installation from the subdirectory to the wwwroot.
When I try to load the backend I get an error:

CS0246: The type or namespace name
'UmbracoMembership' could not be found
(are you missing a using directive or
an assembly reference?)

Now UmbracoMembership is a class of a custom usercontrol, which resides in the Membership.dll file which is in the bin folder.

Before the move everything worked. I'm guessing this has something to do with where asp.net is looking for the assemblies (and not an Umbraco specific issue), but I have no idea where and how to fix this.

Thank you!
-Elad

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

筑梦 2024-10-28 17:53:48

检查是否需要在 web.config 中附加命名空间定义。这些将应用于所有页面。

<configuration>
    <system.web>
        <pages>
            <namespaces>
                <add namespace="MyNamespace" />
            </namespaces>
        </pages>
    </system.web>
</configuration>

Check if you need to append namespace definition in your web.config. These will be applied to all pages.

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