我有一个包含活动目录ID的SQL表,但没有名称。所以,问题的核心是我需要找到相关的名称。我曾尝试使用SQL来查询活动目录,但我遇到了问题,因此我的下一次尝试是使用C#.NET并在页面上显示这些ID及其关联的活动目录“givenname”。
我目前正在尝试使用Gridview执行此操作。
下面的工作表示我尝试在ID列旁边创建gridview列,并使用相关的用户名填充它。
现在返回的是第一列中用户的名称,一遍又一遍地重复。
DataTable dt = new DataTable();
using (SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["DB"].ConnectionString))
{
SqlDataAdapter adapter = new SqlDataAdapter("spIDsSelect", dbConnection);
adapter.Fill(dt);
gvLookup.DataSource = dt;
gvLookup.DataBind();
}
string connection = "LDAP://....";
using (DirectoryEntry DE = new DirectoryEntry(connection))
{
DirectorySearcher dssearch = new DirectorySearcher(connection);
foreach (DataRow dr in dt.Rows)
{
var name = dt.Rows[0][0].ToString();
dssearch.Filter = String.Format("(&(objectCategory=user)(samaccountname={0}))", name);
foreach (SearchResult sresult in dssearch.FindAll())
{
DirectoryEntry de = sresult.GetDirectoryEntry();
{
foreach (GridViewRow row in gvLookup.Rows)
{
((Label)row.FindControl("lbName")).Text = de.Properties["givenname"][0].ToString();
}
}
}
}
}
<asp:GridView ID="gvLookup" runat="server" AllowSorting="True" AutoGenerateColumns="False"
DataSourceID="Lookup" CellPadding="4" ForeColor="#333333" GridLines="None" HorizontalAlign="Left"
DataKeyNames="recID" >
<AlternatingRowStyle BackColor="White"/>
<Columns>
<asp:BoundField DataField="ID" HeaderText="ID"
HeaderStyle-HorizontalAlign="Left">
<HeaderStyle HorizontalAlign="Left"></HeaderStyle>
</asp:BoundField>
<asp:TemplateField HeaderText="Name" >
<ItemTemplate>
<asp:Label runat="server" ID="lbName"></asp:Label>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
答案 0 :(得分:0)
从数据库中检索数据后,只需在数据表中添加一列:
dt.Columns.Add("ActiveDirectoryName", typeof(string));
答案 1 :(得分:0)
这很有效。无需循环遍历所有数据行,只需遍历Gridview。我期望每个ID只有一个结果,并且可以使用目录条目名称填充Gridview中的标签。重要的是要检查以确保sresult不为null,因为表中的某些用户可能不再有效,这会提示对象引用错误。
string connection = "LDAP...";
using (DirectoryEntry DE = new DirectoryEntry(connection))
{
DirectorySearcher dssearch = new DirectorySearcher(connection);
{
var sgID = ((Label)gr.FindControl("lbID")).Text;
dssearch.Filter = String.Format("(&(objectCategory=user)(samaccountname={0}))", ID);
SearchResult sresult = dssearch.FindOne();
if (sresult != null)
{
DirectoryEntry de = sresult.GetDirectoryEntry();
((Label)gr.FindControl("lbName")).Text = de.Name;
}
}
}