I have a page that dynamically loads multiple user controls on a page. I have a few buttons on each user control that cause a server side event that does some processing related to the user control that triggerred the action.
The problem I run into is that this button click causes the entire page to reload (as all the dynamically loaded controls need to be reloaded on every postback) for all the user controls that makes the page really slow.
Is there a way to tell .NET to ignore the other user controls when a user is interacting with one of the user controls?
All user controls are within updatepanels that have mode set to conditional.