繁体   English   中英

找不到动态添加的UserControl .Net的实例

[英]Cannot find instance of dynamically added UserControl .Net

我有一个UserControl ,我正在将其加载到UpdatePanel内的div中。 这是我的加载代码:

controls.IDLControl IdlControl = LoadControl(@"~/controls/IDLControl.ascx") as controls.IDLControl;
IdlControl.ClientIDMode = ClientIDMode.Static;
IdlControl.ID = "IDLControl";
spGroup.Controls.Clear();
spGroup.Controls.Add(IdlControl);

这是我尝试检索其实例的代码:

controls.IDLControl IdlControl = RecursiveFindControl(this, "IDLControl") as controls.IDLControl;

private Control RecursiveFindControl(Control targetControl, string findControlId) {
    if (targetControl.HasControls()) {
        foreach (Control childControl in targetControl.Controls) {
            if (childControl.ID == findControlId) {
                return childControl;
            }

            RecursiveFindControl(childControl, findControlId);
        }
    }

    return null;
}

但是,我得到的只是空。 我需要帮助弄清楚这一点。

AFAIK,我需要在预初始化时将控件重新添加到页面上,但是它是可以添加的控件之一,具体取决于从下拉列表中选择的选项(也可以动态填充)。 我一直在努力弄清楚如何使这项工作。

您可以尝试这样的操作,以根据DropDownList选择的选项将控件重新添加到Page_Init中。

protected void Page_Init(Object sender, EventArgs e)
{
    if (IsPostBack)
    {
        if (drpYourDropDown.Items.Count > 0 && drpYourDropDown.SelectedItem.Text == "yourOption")
        { 
            AddIDLControl();
        }
    }
}

private void AddIDLControl()
{
    controls.IDLControl IdlControl = LoadControl(@"~/controls/IDLControl.ascx") as controls.IDLControl;
    IdlControl.ClientIDMode = ClientIDMode.Static;
    IdlControl.ID = "IDLControl";
    spGroup.Controls.Clear();
    spGroup.Controls.Add(IdlControl);
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM