您好,登錄后才能下訂單哦!
本篇內容介紹了“C#怎么實現AD+NT+Normal認證”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
代碼如下:
鑒于此,要使用Forms認證方式 1。web.config: <authentication mode="Forms" > <forms name="PlatForm" defaultUrl="default.aspx" path="/"></forms> </authentication> <appSettings> <add key="LDAP" value="LDAP://server:389/OU=*,DC=*,DC=*"/> </appSettings> 2。login.aspx: <form id="form1" runat="server"> <div> <p> <asp:TextBox ID="txtName" runat="server"></asp:TextBox></p> <asp:TextBox ID="txtPwd" runat="server" TextMode="Password"></asp:TextBox> <p><asp:DropDownList ID="drpDomain" runat="server"> <asp:ListItem Selected="True">aa</asp:ListItem> <asp:ListItem></asp:ListItem> <asp:ListItem Value="bb">bb</asp:ListItem> </asp:DropDownList></p> <asp:Button ID="btnLogin" runat="server" Text="登錄" OnClick="btnLogin_Click" /> </div> </form> 3.login.aspx.cs DBAccess db = new DBAccess(); protected void Page_Load(object sender, EventArgs e) { //如果default.aspx沒有做退出動作 if (Request.QueryString["Flag"] != "Y") { //初始化,抓取NT帳號 if (Request.ServerVariables["LOGON_USER"] != "") { FormsAuthentication.RedirectFromLoginPage(Request.ServerVariables["LOGON_USER"], true); } } //否則,進行Normal or AD驗證 else { } } protected void btnLogin_Click(object sender, EventArgs e) { //判斷非AD賬號 string strSql="select * from users where job=1 and account_ID='"+txtName.Text.Trim()+"' and psWrd='"+txtPwd.Text.Trim()+"'"; DataSet ds=db.GetDataSet(strSql); clsData objData = new clsData(); //AD驗證 if (objData.CheckNTAccount(txtName.Text, txtPwd.Text, drpDomain.SelectedValue)) { FormsAuthentication.RedirectFromLoginPage(txtName.Text, true); } //其他非AD賬號 else if(ds.Tables[0].Rows.Count!=0) { FormsAuthentication.RedirectFromLoginPage(txtName.Text, true); } //如果不能成功登錄,顯示出錯信息 else { Response.Write("<script type=text/javascript>alert(\'請輸入正確的密碼,賬號~\');</script>"); } } 4.default.aspx.cs protected void lbtnLogout_Click(object sender, EventArgs e) { string strFlag = "flag=Y"; FormsAuthentication.RedirectToLoginPage(strFlag); } 5.clsData.cs(AD驗證) using System.DirectoryServices; //此為AD驗證的控件,一定要加載!!! /// <summary> /// clsData 的摘要說明 /// </summary> public class clsData { public clsData() { // // TODO: 在此處添加構造函數邏輯 // } public bool CheckNTAccount(string UserName, string Password, string Domain) { DirectoryEntry Ad; // DirectorySearcher ds; string strLDAP = System.Configuration.ConfigurationSettings.AppSettings["LDAP"]; Ad = new DirectoryEntry(strLDAP, Domain + "\\" + UserName, Password, AuthenticationTypes.ServerBind); try { object obj = Ad.NativeObject; //檢查是否可正常登入 return true; } catch (Exception) { return false; } finally { Ad.Dispose(); } } } 6,DBAccess.cs
“C#怎么實現AD+NT+Normal認證”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。