我有一个空白的用户控件(子),在 Page_Load 期间我创建了一些文本框和一个按钮。我还向按钮添加了一个事件。
然后,我从另一个用户控件(父级)中的占位符动态加载该用户控件。两个控件都正确呈现,但是当我单击按钮时,不会触发事件。关于如何处理事件的任何想法?
子代码:
protected void Page_Load(object sender, EventArgs e)
{
/*... other user controls ..*/
UpdateButton = new LinkButton();
UpdateButton.ID = "buttonid";
UpdateButton.Text = "text";
UpdateButton.Click += new EventHandler(UpdateButton_Click);
this.Controls.Add(UpdateButton);
}
protected override void Render(HtmlTextWriter writer)
{
for (int i = 0; i < this.Controls.Count; i++)
{
this.Controls[i].RenderControl(writer);
}
}
public void UpdateButton_Click(object sender, EventArgs e)
{
//Do stuff
}
父代码:
protected void Page_Load(object sender, EventArgs e)
{
placeholder.Controls.Clear();
ChildControl uc = (ChildControl)LoadControl("~/UserControls/ChildControl.ascx");
placeholder.Controls.Add(uc);
}
如果我直接使用子控件(即没有父控件),则会引发并很好地处理单击事件。但是当我使用父控件时,调试器甚至不会在 UpdateButton_Click() 中命中断点。
提前致谢。