哪个控件导致了回发?

发布于 2024-12-02 11:07:36 字数 240 浏览 2 评论 0原文

我有两个按钮:

<asp:Button ID="Button1" runat="server" Text="Button" />
<asp:Button ID="Button2" runat="server" Text="Button" />

如何在 pageLoad 上确定这两个按钮中的哪一个导致了回发? 是否有一个简短的解决方案,因为我知道只有两个控件可以导致此回发?

I have two buttons:

<asp:Button ID="Button1" runat="server" Text="Button" />
<asp:Button ID="Button2" runat="server" Text="Button" />

How can I determine on pageLoad which one of this two caused the postback?
Is there a short solution as I know there are only two controls that can cause this postback?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

作业与我同在 2024-12-09 11:07:36

您可以使用此方法来获取导致回发的控件:

/// <summary>
/// Retrieves the control that caused the postback.
/// </summary>
/// <param name="page"></param>
/// <returns></returns>
private Control GetControlThatCausedPostBack(Page page)
{
    //initialize a control and set it to null
    Control ctrl = null;

    //get the event target name and find the control
    string ctrlName = page.Request.Params.Get("__EVENTTARGET");
    if (!String.IsNullOrEmpty(ctrlName))
        ctrl = page.FindControl(ctrlName);

    //return the control to the calling method
    return ctrl;
}

You can use this method to get the control that caused the postback:

/// <summary>
/// Retrieves the control that caused the postback.
/// </summary>
/// <param name="page"></param>
/// <returns></returns>
private Control GetControlThatCausedPostBack(Page page)
{
    //initialize a control and set it to null
    Control ctrl = null;

    //get the event target name and find the control
    string ctrlName = page.Request.Params.Get("__EVENTTARGET");
    if (!String.IsNullOrEmpty(ctrlName))
        ctrl = page.FindControl(ctrlName);

    //return the control to the calling method
    return ctrl;
}
披肩女神 2024-12-09 11:07:36

http://geekswithblogs.net/mahesh/archive/2006/06/ 27/83264.aspx

private string getPostBackControlName()
    {
        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;
                }
            }

        }

        if (control != null)
            return control.ID;
        else
            return string.Empty;
    }

http://geekswithblogs.net/mahesh/archive/2006/06/27/83264.aspx

private string getPostBackControlName()
    {
        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;
                }
            }

        }

        if (control != null)
            return control.ID;
        else
            return string.Empty;
    }
沫尐诺 2024-12-09 11:07:36

这有助于找到导致页面加载回发的控件名称。这对我有帮助。希望这对其他人也有帮助

  <asp:Button ID="Button1" runat="server" Text="Button"
  OnClientClick = "SetSource(this.id)" />

   <asp:ImageButton ID="ImageButton1" runat="server"
    OnClientClick = "SetSource(this.id)" />

            <script type = "text/javascript">
            function SetSource(SourceID)
          {
    var hidSourceID =
    document.getElementById("<%=hidSourceID.ClientID%>");
    hidSourceID.value = SourceID;
    }
    </script>

 on code behind you can get the ID of the function using :
 if (IsPostBack)
 {
   string CtrlID = string.Empty;
  if (Request.Form[hidSourceID.UniqueID] != null &&
       Request.Form[hidSourceID.UniqueID] != string.Empty)
    {
     CtrlID = Request.Form[hidSourceID.UniqueID];
   }
}

This helps to find the name of control that caused postback in pageload.This helped me.Hope this helps someone else too

  <asp:Button ID="Button1" runat="server" Text="Button"
  OnClientClick = "SetSource(this.id)" />

   <asp:ImageButton ID="ImageButton1" runat="server"
    OnClientClick = "SetSource(this.id)" />

            <script type = "text/javascript">
            function SetSource(SourceID)
          {
    var hidSourceID =
    document.getElementById("<%=hidSourceID.ClientID%>");
    hidSourceID.value = SourceID;
    }
    </script>

 on code behind you can get the ID of the function using :
 if (IsPostBack)
 {
   string CtrlID = string.Empty;
  if (Request.Form[hidSourceID.UniqueID] != null &&
       Request.Form[hidSourceID.UniqueID] != string.Empty)
    {
     CtrlID = Request.Form[hidSourceID.UniqueID];
   }
}
空‖城人不在 2024-12-09 11:07:36

添加到此:您可以通过以下方式找到导致回发的事件:

Page.Request.Params.Get("__EVENTARGUMENT")

To add to this: you can find which event caused the postback with:

Page.Request.Params.Get("__EVENTARGUMENT")
夏末染殇 2024-12-09 11:07:36
protected void ReUsedMethod_Click(object sender, EventArgs e)
{
  string ctrlName = ((Button)sender).ID;
}
protected void ReUsedMethod_Click(object sender, EventArgs e)
{
  string ctrlName = ((Button)sender).ID;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文