views:

60

answers:

1

Hey everyone.. I am needing to have a music player (something like a strip down at the bottom of the page that goes all the way across), that remains at the bottom even when the user navigates to another page within the same site. The purpose of this is to play music on the website no matter where the user goes on the website. Hopefully I'm making sense!

Thanks,

Mike

+1  A: 

The only way to really do what you're looking for is with the use of frames or to load a single page that uses AJAX for all additional content loading. Anything that causes the page to reload will interrupt playback (a frame can exist as it's own page).

Check out my response on a similar question -- http://stackoverflow.com/questions/3478836/webpage-navigation-with-persistance-asp-net-c/3478917#3478917

o6tech