我有ascx假设A.ascx我正在OnInit()这样写一个委托
btnUpdate.Click += delegate
{
if (MaxLength.HasValue && txtText.Text.Length >= MaxLength.Value)
{
lblError.Text = string.Format(Resources.ErrorMessage_FieldLength, MaxLength);
return;
}
if (Update != null) Update(this, EventArgs.Empty);
};
现在我想在B.ascx btn点击
上调用此委托protected void btnHdnAnswer_Click(object sender, EventArgs e)
{
// How to call above delegate..
}
请帮助我
答案 0 :(得分:1)
让你的代表成为一个合适的方法。
btnUpdate.Click += delegate { DoUpdate(); }
...
public void DoUpdate()
{
if (MaxLength.HasValue && txtText.Text.Length >= MaxLength.Value)
{
lblError.Text = string.Format(Resources.ErrorMessage_FieldLength, MaxLength);
return;
}
if (Update != null) Update(this, EventArgs.Empty);
}
确保您的控件的ID设置为在代码隐藏中为其生成成员:
<Project:A runat="server" ID="MyBControl"/>
然后从B(父)控件中调用它:
protected void btnHdnAnswer_Click(object sender, EventArgs e)
{
MyBControl.Update();
}