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?
Request.Form["__EVENTTARGET"] will give you the button that fired the postback
Request.Form["__EVENTTARGET"]