如何在 Web 表单中使用目录服务?
基本上,我正在创建一个员工变更请求表单,并希望在列出的选择中加载电子邮件组(用于添加/删除成员资格),我正在 Visual C# 中工作,并尝试创建一个使用目录服务来完成此操作的单独类。当我将该类添加到 App_Code 文件夹时,它不再能够找到 System.DirectoryServices 并给我一个错误。我缺少什么?
Basically I am creating an employee change request form and want to load up email groups in a selection listed (for add/removing memberships) I am working in Visual C# and trying to create a separate class that uses directory services to accomplish this. When I add the class to the App_Code folder it is no longer able to find the System.DirectoryServices and gives me an error. What am I missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用的是 .NET 3.5 及更高版本,则应查看 System.DirectoryServices.AccountManagement (S.DS.AM) 命名空间。您需要将其作为 .NET 引用添加到您的项目中。
在这里阅读所有相关内容:
管理 .NET Framework 3.5 中的目录安全主体
基本上,您可以定义域上下文并轻松地在 AD 中查找用户和/或组:
新的 S.DS.AM 使在 AD 中使用用户和组变得非常容易:
If you're on .NET 3.5 and up, you should check out the
System.DirectoryServices.AccountManagement
(S.DS.AM) namespace. You'll need to add this to your project as a .NET reference.Read all about it here:
Managing Directory Security Principals in the .NET Framework 3.5
Basically, you can define a domain context and easily find users and/or groups in AD:
The new S.DS.AM makes it really easy to play around with users and groups in AD: