Finding out which control caused the Postback






2.80/5 (4 votes)
This code is very useful for those who want to know which aspcontrol has caused the postback.
Introduction
There will be many instances where we would want to skip the (!IsPostBack
), for which we have to know which control has triggered the postback, hence this code snippet.
Background
Add Global.asax to the project (right click project, add new item, add global).
Using the Code
The method GetPostBackControl
should be written in Global.asax file (so that it is accessible globally across the application).
public class Global : System.Web.HttpApplication
{
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;
}
}
This is very useful for tough web applications.