Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用标准身份验证(使用 AD)和asp:login. 我想将下拉列表添加到登录模板(将从数据库中检索元素)。但是,如果我只是简单地添加:
asp:login
<asp:DropDownList ID="ddlDomain" runat="server"/>
无法从代码中访问它。登录成功后,我希望将来自 ddlDomain 的值添加到会话中。
我需要自己处理整个登录还是有办法将元素添加到模板中?
你可以做
DropDownList ddl = (DropDownList)Login1.LoginView.FindControl("ddlDomain");