asp.net – 在LoginView的RoleGroup中查找控件

我在LoginView的RoleGroup中有一些文本框和复选框.如何在我的代码隐藏中访问这些控件?

<asp:LoginView ID="lgvAdmin" runat="server">
        <RoleGroups>
            <asp:RoleGroup Roles="Administrator">
                <ContentTemplate>
                    <div class="floatL">
                        <h1>Administrator Settings</h1>
                        <asp:CheckBox ID="chkActive" Text="Is Active" Checked="false" runat="server" /><br />                    
                        <asp:CheckBox ID="chkIsRep" Text="Is Representative" Checked="false" runat="server" />
                        <br /><br />
                        <strong>User Permissions</strong><br />
                        <asp:RadioButtonList ID="RadioButtonList1" runat="server" RepeatDirection="Horizontal" RepeatColumns="3" Width="200" Font-Bold="true">
                            <asp:ListItem Value="User" Selected="True">User</asp:ListItem>
                            <asp:ListItem Value="Administrator">Administrator</asp:ListItem>
                        </asp:RadioButtonList><br /><br />
                    <strong>Assigned to Rep</strong><br />
                    <asp:DropDownList ID="DDLRep" CssClass="ddlStyle" Width="165" runat="server" />
                </div>
            </ContentTemplate>
        </asp:RoleGroup>
    </RoleGroups>
</asp:LoginView>

我知道我需要使用FindControl方法,我也知道它不仅仅是lgbvAdmin.FindControl(“chkIsRep”),因为控件所在的层次结构.

所以,它应该是类似的,lgvAdmin.controls [0] .FindControl(“chkIsRep”);

如何找到访问我的控件的确切路径?

最佳答案 我知道这是一个老帖子,但这里有一个关于如何为其他需要答案的人做这个的快速示例:

ITemplate template = lgvAdmin.RoleGroups[0].ContentTemplate;
if (template != null)
{
    Control container = new Control();
    template.InstantiateIn(container);

    foreach (Control c in container.Controls)
    {
        if (c is CheckBox)
        {
            //Do work on checkbox
        }
    }
}
点赞