On postback, how can I check which control cause postback in Page_Init event
On postback, how can I check which control cause postback in Page_Init event. protected void Page_Init(object sender, EventArgs e) { //need to check here which control cause postback? } Thanks J Pollack I see that there is already some great advice and methods suggest for how to get the post back control. However I found another web page ( Mahesh blog ) with a method to retrieve post back control ID. I will post it here with a little modification, including making it an extension class. Hopefully it is more useful in that way. /// <summary> /// Gets the ID of the post back control. /// /// See