5

ASP.NET UserControl のページ ライフサイクルの問題に頭を悩ませようとしています。私が持っているのは、2 つのボタンがある updatepanel です。ここで、Page_Load イベントで、2 つのボタンのどちらがクリックされたかを確認する必要があります。

これにはクリックイベントを使用する必要があることは知っていますが、これは動的に追加されたコントロールなどを含む非常に複雑なページサイクルのケースであるため、残念ながらオプションではありません:-(

値を確認しようとしました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 に答える