gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-02 13:51:58 26 4
gpt4 key购买 nike

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

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

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

那么基本上,有什么方法可以检查在 Page_Load 事件中的 UpdatePanel 中单击了哪个按钮?

提前致谢。

祝一切顺利,

最佳答案

通过该方法可以获取在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;
}
}

关于ASP.NET 确定在页面加载事件中的 updatepanel 内单击了哪个按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11333305/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com