为什么我无法访问“System.DirectoryServices”除了我的表示层之外的任何名称空间?
我正在使用 System.DirectoryServices 库访问活动目录,当前位于我的 Web 层中。但是,我试图将函数从代码隐藏文件移动到另一个命名空间中的 VB 类,但我似乎无法从该命名空间内访问该类。什么给?!
I am accessing active directory with the System.DirectoryServices
library, currently in my web layer. However, I'm trying to move a function from a code-behind file to a VB class in another namespace, and I cannot seem to access that class from within that namespace. What gives?!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜您尝试将逻辑移动到的类位于另一个项目内部?
如果是这种情况,您需要添加对该项目上的 System.DirectoryServices 程序集的引用。
I guess the class you're trying to move the logic to is inside of another project?
If this is the case you need to add a reference to the
System.DirectoryServices
assembly on that project.