I have a user control that has several buttons.
On page_load, I want to run a method except if a specific button was pressed.
When I check the sender on page load inside the user control, I just get the name of the user control and not the button itself.
Is there a way that I can determine what button was pressed on page_load? Otherwise I will have to come up with some hacky method to solve the issue.
Thanks.