Unable to capture the Imagebuttonclick event in postback.
I am using the below code for Button click and tried for Imagebutton as well however “Button” click its working and not for Image button.
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;
}
}
}
return control;
}
Any solution?
Got the solution:
Added one more check in the above mentioned code,
// handle the ImageButton postbacks
And now I am able to capture the ImageButton postback event.
Thanks