5

我试图解决 ASP.NET UserControl 的页面生命周期问题。我有一个更新面板,里面有两个按钮。现在,在 Page_Load 事件中,我需要检查两个按钮中的哪一个被单击。

我确实知道我应该为此使用点击事件,但这是一个非常复杂的页面循环的情况,带有动态添加的控件等等,所以这不是一个选项,不幸的是:-(

我试图检查该Request.Form["__EVENTTARGET"]值,但由于按钮位于 UpdatePanel 内,因此该值是一个空字符串(至少我猜这就是它为空的原因)

所以基本上,有没有办法在 Page_Load 事件中检查在 UpdatePanel 中单击了哪个按钮?

提前致谢。

一切顺利,

4

1 回答 1

10

您可以通过此方法在 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; 
    }
}
于 2012-07-04T17:51:20.603 回答