ASP.NET确定在页面加载事件中的更新面板内单击了哪个按钮

时间:2012-07-04 17:26:20

标签: asp.net user-controls event-handling postback

我正试图了解ASP.NET UserControl的页面生命周期问题。我所拥有的是一个带有两个按钮的updatepanel。现在,在Page_Load事件中,我需要检查一下这两个按钮中的哪一个被点击。

我知道我应该使用click事件,但是这是一个非常复杂的页面循环的情况,动态添加控件等等,所以这不是一个选项,不幸的是: - (< / p>

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

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

提前致谢。

一切顺利,

1 个答案:

答案 0 :(得分: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; 
    }
}