在我的页面中,我需要和表单在请求中添加用户。我需要验证在活动目录中输入的此名称或电子邮件。任何人都有插入用户和 C# 以在 AD 中验证此值的表单(ASPX、HTML、Javascript)?
今天,这就是我所拥有的,但视觉上它很丑陋,并且无法验证输入的内容。
<asp:TextBox ID="txtUserAdd" runat="server" Height="17px" Width="150px"></asp:TextBox>
<asp:Button ID="btnAddUser" class="btn" runat="server" Font-Bold="true" Text="Add User" OnClick="btnSendUser_OnClick" />
<br />
<table id="tblUsers" CssClass="table table-bordered">
<asp:Label ID="lblUser" runat="server" Visible="false"></asp:Label>
</table>
protected void btnSendUser_OnClick(object sender, EventArgs e)
{
lblUser.Visible = true;
lblUser.Text = txtUserAdd.Text;
}