首先,我想开始说我是编程新手。我在Visual Studio中创建了一个表单,其中包含一个名为tEmailAddress的文本框和一个按钮bExport。当我将我的用户名放在tEmailAddress字段中并按下按钮时,我希望它显示一个带有来自AD的displayname字段的消息框。
由于缺乏C#知识,我无法得到想要的结果。没有错误,当我点击按钮时,没有任何内容返回到消息框。 请指教。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.DirectoryServices;
namespace ReadFromAD
{
public partial class Form1 : Form
{
public static DirectoryEntry GetDirectoryEntry()
{
DirectoryEntry de = new DirectoryEntry();
de.Path = "LDAP://OU=Users,DC=mydomain,DC=com";
de.AuthenticationType = AuthenticationTypes.Secure;
return de;
}
String FindName(String userAccount)
{
DirectoryEntry entry = GetDirectoryEntry();
try
{
DirectorySearcher search = new DirectorySearcher(entry);
search.Filter = "(SAMAccountName=" + userAccount + ")";
search.PropertiesToLoad.Add("displayName");
SearchResult result = search.FindOne();
if (result != null)
{
return result.Properties["displayname"][0].ToString();
}
else
{
return "Unknown User";
}
}
catch (Exception ex)
{
string debug = ex.Message;
return "";
}
}
public Form1()
{
InitializeComponent();
}
private void pictureBox1_Click(object sender, EventArgs e)
{
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void bExport_Click(object sender, EventArgs e)
{
if (tEmailAddress.Text != "")
{
string account = tEmailAddress.Text.ToString();
FindName(account);
}
}
}
}
答案 0 :(得分:2)
FindName
返回一个字符串但你从不在任何地方使用它
string result = FindName(account);
然后,您可以根据需要在bExport_Click
方法中使用局部变量结果
答案 1 :(得分:2)
更改bExport_Click
以显示消息
private void bExport_Click(object sender, EventArgs e)
{
if (tEmailAddress.Text != "")
{
string account = tEmailAddress.Text.ToString();
MessageBox.Show(FindName(account));
}
}