I have a page in ASP.NET which has some updatepanels on it. After the page has loaded, I want the updatepanels to trigger the updatepanels to update.
I'm working using this answer which says to put this Javascript on the page.
$(document).ready(function () {
window.__doPostBack('<%= hiddenAsyncTrigger.ClientID %>', 'OnClick');
});
However, this causes the click event to be spammed becasue the load event is triggering antoher load... ??
The update panels all function fine, the issue is with triggering the update to occur once after the page has loaded