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);
}
else
{
string ctrlStr = String.Empty;
Control c = null;
foreach (string ctl in page.Request.Form)
{
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.