我需要使用 Active Directory 对我网站上的用户进行身份验证。我们的开发组告诉我使用这样的代码:
using System.DirectoryServices.ActiveDirectory;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
LdapAuthentication objAuthenticate;
我能够将 DirectoryServices.dll 添加到我的 bin 目录,并将程序集添加到我的 web.config,但 LdapAuthentication 类型不在 System.Directory.ActiveDirectory 中。它说找不到类型或名称空间名称“LdapAuthentication”......谁能告诉我我做错了什么?谢谢。