我正在尝试解决 ASP.NET 用户控件的页面生命周期问题。我有一个带有两个按钮的更新面板。现在,在Page_Load事件中,我需要检查一下单击了两个按钮中的哪一个。
我确实知道我应该为此使用 click 事件,但这是一个相当复杂的页面循环的情况,其中包含动态添加的控件等等,所以不幸的是,这不是一个选项:-(
我试图检查Request.Form["__EVENTTARGET"]
值,但由于按钮位于 UpdatePanel 内,因此该值是一个空字符串(至少我想这就是它为空的原因)
所以基本上,有没有办法检查在Page_Load事件中在 UpdatePanel 中单击了哪个按钮?
提前谢谢。
万事如意,
博
您可以通过此方法获取导致Page_Load事件中回发的控件的 ID。
protected void Page_Load(object sender, EventArgs e)
{
Textbox1.Text = getPostBackControlID();
}
private string getPostBackControlID()
{
Control control = null;
//first we will check the "__EVENTTARGET" because if post back made by the controls
//which used "_doPostBack" function also available in Request.Form collection.
string ctrlname = Page.Request.Params["__EVENTTARGET"];
if (ctrlname != null && ctrlname != String.Empty)
{
control = Page.FindControl(ctrlname);
}
// if __EVENTTARGET is null, the control is a button type and we need to
// iterate over the form collection to find it
else
{
string ctrlStr = String.Empty;
Control c = null;
foreach (string ctl in Page.Request.Form)
{
//handle ImageButton they having an additional "quasi-property" in their Id which identifies
//mouse x and y coordinates
if (ctl.EndsWith(".x") || ctl.EndsWith(".y"))
{
ctrlStr = ctl.Substring(0, ctl.Length - 2);
c = Page.FindControl(ctrlStr);
}
else
{
c = Page.FindControl(ctl);
}
if (c is System.Web.UI.WebControls.Button ||
c is System.Web.UI.WebControls.ImageButton)
{
control = c;
break;
}
}
}
return control.ID;
}
}