3

我有这个aspx:

<asp:ImageButton ID="check" runat="server" ImageUrl="../img/process.png"  OnClick="check_Click" CausesValidation="false" UseSubmitBehavior="false"/>

现在Page_Load我想确定是不是由这个问题PostBack引起的,check所以我用这个代码遵循了这个问题的方法:

if(FindControl(Page.Request.Params.Get("__EVENTTARGET"))!=check)//if not caused by "check"
    //do something

但是Page.Request.Params.Get("__EVENTTARGET")是空的。(我正在使用我ImageButton的 in UpdatePanel

我怎样才能达到我的目标?

4

4 回答 4

6
protected void Page_Load(object sender, EventArgs e)
{
    if (!Page.IsPostBack)
        return;
    Control control = null;
    string controlName = Page.Request.Params["__EVENTTARGET"];
    if (!String.IsNullOrEmpty(controlName))
    {
        control = Page.FindControl(controlName);
    }
    else
    {
        string controlId;
        Control foundControl;
        foreach (string ctl in Page.Request.Form)
        {
            if (ctl.EndsWith(".x") || ctl.EndsWith(".y"))
            {
                controlId = ctl.Substring(0, ctl.Length - 2);
                foundControl = Page.FindControl(controlId);
            }
            else
            {
                foundControl = Page.FindControl(ctl);
            }
            if (!(foundControl is Button || foundControl is ImageButton)) continue;
            control = foundControl;
            break;
        }
    }
    Label1.Text = control.ID; // label1 must be in UpdatePanel
}
于 2013-08-18T03:42:31.043 回答
1

尝试这个:

Control ctrl = null;

string target = Page.Request.Params.Get("__EVENTTARGET");
if (!String.IsNullOrEmpty(target))
    ctrl = page.FindControl(target);

if(ctrl == check){
     //check is the control that caused postback
}

** 更新 **

好的,结果 ImageButtons 的功能有点不同。将此用于您的标记:

<asp:ImageButton onClientClick="setTarget(this.id)" ID="check" runat="server" ImageUrl="../img/process.png"  OnClick="check_Click" CausesValidation="false" UseSubmitBehavior="false"/>

<asp:HiddenField ID="targetId" runat="server" />

现在创建一个 javascript 函数,它将使用启动 PostBack 的字段的 ID 填充我们的隐藏字段:

function SetSource(id)
{
    var targetId=
    document.getElementById("<%=targetId.ClientID%>");
    targetId.value = id;
}

最后我们在 PostBack 中检查它:

Control ctrl = null;

if (Request.Form[targetId.UniqueID] != null &&
    Request.Form[targetId.UniqueID] != string.Empty)
{
    ctrl = Page.FindControl(Request.Form[targetId.UniqueID]);
}

if(ctrl == check){
 //check is the control that caused postback
}

参考:http ://www.aspsnippets.com/Articles/How-to-find-the-control-that-c​​aused-PostBack-in-ASP.Net.aspx

于 2013-08-18T02:01:04.550 回答
1

由于这是一个更新面板,因此请尝试通过 获取值ScriptManager,如下所示:

protected void Page_Load(object sender, EventArgs e)
{
    var updatePanelControlIdThatCausedPostBack = String.Empty;
    var scriptManager = ScriptManager.GetCurrent(Page);

    if (scriptManager != null)
    {
        var smUniqueId = scriptManager.UniqueID;
        var smFieldValue = Request.Form[smUniqueId];

        if (!String.IsNullOrEmpty(smFieldValue) && smFieldValue.Contains("|"))
        {
            updatePanelControlIdThatCausedPostBack = smFieldValue.Split('|')[1];
        }
    }

    if (!String.IsNullOrEmpty(updatePanelControlIdThatCausedPostBack))
    {
        // Do something with control ID value that caused UpdatePanel postback here
    }
}
于 2013-08-18T03:06:37.737 回答
0

如果一个控件导致PostBackID不在null请求集合中,Form.Request[controlID].

如果是Image,则请求集合中有两项,一项用于 x 坐标,一项用于 y 坐标,用于表示鼠标在图像中的确切位置。

这样做:

if(Form.Request["Img1.x"] != null)
于 2013-08-18T03:32:32.167 回答