How do I differentiate between two triggers that can both POST callbacks to the page during OnLoad
? The controls themselves will automatically trigger their callback handlers, but that is too late.
The background on my issue is probably irrelevant, but ... I am creating an ASP.NET web page and I have two controls on the page that can trigger a callback, a "change active tab" event from my DevExpress ASPxTabControl and a "update" button that changes some settings. I only want to load the contents on the active tab because the tabs are filled with too-heavy computations and so forth. For various reasons, this loading must happen in OnLoad() unless the tab is the one firing the callback, in which case it should happen (only) during the "active tab changed" event.