Inside asp.net form I have few dynamically generated buttons, all of this buttons submit a form, is there a way to get which button was submit the form in page load event?
You could try:
if (this.Page.Request.Form[this.btnSave.ClientID.Replace("_", "$")] != null) { }