如何识别Page_Load中的回发事件

时间:2008-09-08 08:19:47

标签: c# asp.net

我们有一些遗留代码需要在Page_Load中识别哪个事件导致了回发。 目前,这是通过检查请求数据来实现的......

if(Request.Form [“__ EVENTTARGET”]!= null
&安培;&安培; (Request.Form [“__ EVENTTARGET”]。IndexOf(“BaseGrid”)> -1 // BaseGrid事件(例如排序)
|| Request.Form [“btnSave”]!= null //保存按钮

如果有人重命名控件,这非常难看。有没有更好的方法呢?

重写每个页面,以便它不需要在Page_Load中检查这个页面。

3 个答案:

答案 0 :(得分:6)

这可以让你获得导致回发的控件:

public static Control GetPostBackControl(Page page)
{
    Control control = null;

    string ctrlname = page.Request.Params.Get("__EVENTTARGET");
    if (ctrlname != null && ctrlname != string.Empty)
    {
        control = page.FindControl(ctrlname);
    }
    else
    {
        foreach (string ctl in page.Request.Form)
        {
            Control c = page.FindControl(ctl);
            if (c is System.Web.UI.WebControls.Button)
            {
                control = c;
                break;
            }
        }
    }
    return control;
}

在此页面上阅读更多相关信息: http://ryanfarley.com/blog/archive/2005/03/11/1886.aspx

答案 1 :(得分:0)

除上述代码外,如果控件的类型为ImageButton,则添加以下代码

if (control == null) 
{ for (int i = 0; i < page.Request.Form.Count; i++) 
    { 
        if ((page.Request.Form.Keys[i].EndsWith(".x")) || (page.Request.Form.Keys[i].EndsWith(".y"))) 
             { control = page.FindControl(page.Request.Form.Keys[i].Substring(0, page.Request.Form.Keys[i].Length - 2)); break; 
             }
     }
 } 

答案 2 :(得分:0)

我只是发布了整个代码(其中包括导致回发的图像按钮/附加控件检查)。谢谢Espo。

public Control GetPostBackControl(Page page)
{ 
   Control control = null; 
   string ctrlname = page.Request.Params.Get("__EVENTTARGET"); 
   if ((ctrlname != null) & ctrlname != string.Empty)
      { 
         control = page.FindControl(ctrlname); 
       }
  else 
      {
        foreach (string ctl in page.Request.Form) 
           { 
              Control c = page.FindControl(ctl); 
              if (c is System.Web.UI.WebControls.Button) 
                  { control = c; break; }
           }
       }
// handle the ImageButton postbacks 
if (control == null) 
{ for (int i = 0; i < page.Request.Form.Count; i++) 
    { 
        if ((page.Request.Form.Keys[i].EndsWith(".x")) || (page.Request.Form.Keys[i].EndsWith(".y"))) 
             { control = page.FindControl(page.Request.Form.Keys[i].Substring(0, page.Request.Form.Keys[i].Length - 2)); break; 
             }
     }
 } 
return control; 
}