asp.net 应用程序已移动 - 未找到命名空间
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查是否需要在 web.config 中附加命名空间定义。这些将应用于所有页面。
Check if you need to append namespace definition in your web.config. These will be applied to all pages.