找出点击了哪个按钮的方法

时间:2011-06-20 13:54:11

标签: c# asp.net events

我想知道在回发期间点击了什么按钮。

因此,如果用户单击按钮..它将进行回发,然后进入控件Click事件。

我想要做的是找出第一阶段点击的按钮。在PostBack阶段。

有没有办法实现这个目标?

PS。仅限c#代码。这是一个asp.net问题

2 个答案:

答案 0 :(得分:6)

您可以使用与此类似的代码检查__EVENTTARGETForm集合(从here无耻地窃取)。

public static System.Web.UI.Control GetPostBackControl(System.Web.UI.Page page)
{
    Control control = null;
    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 controls ...
            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;
}

Page_Load中调用它:

Control controlThatCausedPostBack = GetPostBackControl(this);

答案 1 :(得分:0)

只需在您的网页上使用私人变量即可。在OnClick处理程序中,将该变量的值设置为sender参数(您需要将其类型转换为Button或Control)。