Hey,
Using asp.net, c# and jquery.
I'm having two update panels with updatemode conditional that updates using AsyncPostBackTriggers called from timers.
One updates every second "uplA" and the other one every five seconds "uplB".
uplB runs some backend code that at certain times runs a jquery script that shows a flash that plays a sound:
function pageLoad() {
$('#divPlaySound').flash({
src: '/Flash/PlaySound.swf',
width: 0,
height: 0
});
};
But uplA is also updating this, the PageLoad is the cause of this i quess so the flash is printed every second and the whole thing fails.
Is there any way to get this to work so that the flash is added/runs every time uplB is updated and uplA can do its stuff at the same time.