带有.Net的Active Directory服务器

时间:2009-11-06 07:15:08

标签: .net vb.net active-directory

我们正在使用MS Visual Studio 2008 VB .Net开发我们的应用程序。

我们必须使用Active Directory Server来验证登录应用程序的用户。

是否有人将代码示例与.Net和ADS进行了整合?

3 个答案:

答案 0 :(得分:5)

有关于该主题的CodeProject文章:

System.DirectoryServices文档中的MSDN上,有

然后关于AD支持.NET 2.0和3.5的新功能的两篇非常好的文章:

答案 1 :(得分:2)

答案 2 :(得分:2)

假设您要将用户置于Active Directory组进行身份验证:

' Assume an Active Directory group exists named "MyApp Admins" with users in it.
If My.User.CurrentPrincipal.IsInRole("MyApp Admins") Then
   ' Do stuff
End If