I have a media player object in ASP on a default page. I'd like to have the
audio play continuously no matter what page the user goes to.

In all of the ASP files I have:
<!--#include file="header.html"--> right after the <body> tag. The header
file has the page header graphic and menu. I tried to put the <OBJECT> in
header.html but the playlist restarts on every page.

Any way to get the object to load and stay without restarting?

Thanks.

Re: Media Player Object by Adrienne

Adrienne
Sat Feb 16 19:05:34 CST 2008

Gazing into my crystal ball I observed "Tom" <buckit@number1alltime.com>
writing in news:O$aZFxNcIHA.536@TK2MSFTNGP06.phx.gbl:

> I have a media player object in ASP on a default page. I'd like to
> have the audio play continuously no matter what page the user goes to.
>
> In all of the ASP files I have:
><!--#include file="header.html"--> right after the <body> tag. The
>header
> file has the page header graphic and menu. I tried to put the
> <OBJECT> in header.html but the playlist restarts on every page.
>
> Any way to get the object to load and stay without restarting?
>
> Thanks.
>
>
>

ASP knows nothing of what the client is doing. Ask in a client side
group, perhaps alt.html .

--
Adrienne Boswell at Home
Arbpen Web Site Design Services
http://www.cavalcade-of-coding.info
Please respond to the group so others can share


Re: Media Player Object by zachd

zachd
Sat Feb 16 20:09:32 CST 2008


It doesn't work like that. Page-specific objects get destroyed on
navigatation to the next page. Otherwise you'd be in a wacky state - if the
next page wants to do something with the player ... who should win that
contention?

If you want to do this, you would need to use some sort of frame set, with
the player embedded in a preserved page that doesn't flip with the rest of
the pages.

--
Speaking for myself only.
See http://zachd.com/pss/pss.html for some helpful WMP info.
This posting is provided "AS IS" with no warranties, and confers no rights.
--
"Tom" <buckit@number1alltime.com> wrote in message
news:O$aZFxNcIHA.536@TK2MSFTNGP06.phx.gbl...
>I have a media player object in ASP on a default page. I'd like to have
>the audio play continuously no matter what page the user goes to.
>
> In all of the ASP files I have:
> <!--#include file="header.html"--> right after the <body> tag. The header
> file has the page header graphic and menu. I tried to put the <OBJECT> in
> header.html but the playlist restarts on every page.
>
> Any way to get the object to load and stay without restarting?
>
> Thanks.
>
>



Re: Media Player Object by Tom

Tom
Tue Feb 19 12:42:41 CST 2008

Where can I find a reference for all of the available properties and methods
for WMP to use in the <OBJECT>?

Thanks...
"zachd [MSFT]" <zachd@nomailplz.online.microsoft.com> wrote in message
news:%23NmxboQcIHA.5208@TK2MSFTNGP04.phx.gbl...
>
> It doesn't work like that. Page-specific objects get destroyed on
> navigatation to the next page. Otherwise you'd be in a wacky state - if
> the next page wants to do something with the player ... who should win
> that contention?
>
> If you want to do this, you would need to use some sort of frame set, with
> the player embedded in a preserved page that doesn't flip with the rest of
> the pages.
>
> --
> Speaking for myself only.
> See http://zachd.com/pss/pss.html for some helpful WMP info.
> This posting is provided "AS IS" with no warranties, and confers no
> rights.
> --
> "Tom" <buckit@number1alltime.com> wrote in message
> news:O$aZFxNcIHA.536@TK2MSFTNGP06.phx.gbl...
>>I have a media player object in ASP on a default page. I'd like to have
>>the audio play continuously no matter what page the user goes to.
>>
>> In all of the ASP files I have:
>> <!--#include file="header.html"--> right after the <body> tag. The
>> header file has the page header graphic and menu. I tried to put the
>> <OBJECT> in header.html but the playlist restarts on every page.
>>
>> Any way to get the object to load and stay without restarting?
>>
>> Thanks.
>>
>>
>
>



Re: Media Player Object by zachd

zachd
Tue Feb 19 15:40:05 CST 2008


MSDN is a pretty useful reference for this sort of question:
http://msdn2.microsoft.com/en-us/library/bb249680.aspx
should cover it. =)

Cheers,
-Zach
--
Speaking for myself only.
See http://zachd.com/pss/pss.html for some helpful WMP info.
This posting is provided "AS IS" with no warranties, and confers no rights.
--
"Tom" <buckit@number1alltime.com> wrote in message
news:ezMk2cycIHA.1208@TK2MSFTNGP05.phx.gbl...
> Where can I find a reference for all of the available properties and
> methods for WMP to use in the <OBJECT>?
>
> Thanks...
> "zachd [MSFT]" <zachd@nomailplz.online.microsoft.com> wrote in message
> news:%23NmxboQcIHA.5208@TK2MSFTNGP04.phx.gbl...
>>
>> It doesn't work like that. Page-specific objects get destroyed on
>> navigatation to the next page. Otherwise you'd be in a wacky state - if
>> the next page wants to do something with the player ... who should win
>> that contention?
>>
>> If you want to do this, you would need to use some sort of frame set,
>> with the player embedded in a preserved page that doesn't flip with the
>> rest of the pages.
>>
>> --
>> Speaking for myself only.
>> See http://zachd.com/pss/pss.html for some helpful WMP info.
>> This posting is provided "AS IS" with no warranties, and confers no
>> rights.
>> --
>> "Tom" <buckit@number1alltime.com> wrote in message
>> news:O$aZFxNcIHA.536@TK2MSFTNGP06.phx.gbl...
>>>I have a media player object in ASP on a default page. I'd like to have
>>>the audio play continuously no matter what page the user goes to.
>>>
>>> In all of the ASP files I have:
>>> <!--#include file="header.html"--> right after the <body> tag. The
>>> header file has the page header graphic and menu. I tried to put the
>>> <OBJECT> in header.html but the playlist restarts on every page.
>>>
>>> Any way to get the object to load and stay without restarting?
>>>
>>> Thanks.
>>>
>>>
>>
>>
>
>