vote up 0 vote down star

I want to play a sound when asp.net updatepanel updates. Is there a free and simple way to play sound when ajax panel updates?

flag

2 Answers

vote up 0 vote down

Your going to have to attach an event to the endRequest event:

Sys.WebForms.PageRequestManager.getInstance().add_pageLoaded(EndRequestHandler);

the above is Asp.Net ajax, you will have to parse and determine if the postback is coming from a updatepanel's update. The only true way to get a sound to play that is cross browser compatible is to trigger it within a Flash object. IE and FF have different methods for firing a sound.

link|flag
asp.net ajax updatepanel has and updateprogress template. Can I place the flash swf file to inside updateprogress template? – yunus ozen Feb 12 at 17:05
to be honest I am not sure. – Mike_G Feb 12 at 18:10
Thanks, Mike_G. My web app wil infrom the user with playing a sound when an update occures on a database table. I am trying to do it with asp.net ajax. the project will inform live live.feedjit.com does – yunus ozen Feb 12 at 18:22
vote up 0 vote down

I'am is still waiting someone to give me a qlue. I want to do monitor update of adatabase table like http://live.feedjit.com does

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.