Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   ASP General (http://www.velocityreviews.com/forums/f65-asp-general.html)
-   -   Important Media Player (http://www.velocityreviews.com/forums/t796909-important-media-player.html)

D 10-30-2004 06:00 AM

Important Media Player
 
Dear all, anyone know how i can place a media player on my asp page to
allow user to listen to sample songs, etc? or anyone know where to find
the code?? Thanks

Regards
cheers

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

dave 10-30-2004 07:49 AM

Re: Important Media Player
 
Youll do it the same way as you would on an html page - however this group
is about server side code.

<D> wrote in message news:uCaC0WkvEHA.3080@TK2MSFTNGP12.phx.gbl...
> Dear all, anyone know how i can place a media player on my asp page to
> allow user to listen to sample songs, etc? or anyone know where to find
> the code?? Thanks
>
> Regards
> cheers
>
> *** Sent via Developersdex http://www.developersdex.com ***
> Don't just participate in USENET...get rewarded for it!




Daniel 10-30-2004 08:20 AM

Re: Important Media Player
 
The same way is how???

cheers

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

Evertjan. 10-30-2004 10:06 AM

Re: Important Media Player
 
D wrote on 30 okt 2004 in microsoft.public.inetserver.asp.general:

> Dear all, anyone know how i can place a media player on my asp page to
> allow user to listen to sample songs, etc? or anyone know where to find
> the code?? Thanks
>


I use something like this to send off-site sound to the user:

''''...........
Response.Clear()

if instr(href,"mms:")=1 then
Response.ContentType = "video/x-ms-asf"
%>
<ASX version="3.0">
<Entry>
<ref HREF="<%=href%>"/>
</Entry>
</ASX>
<%
elseif instr(href,"rtsp:")=1 OR instr(href,"pnm:")=1 then
Response.ContentType="audio/x-pn-realaudio"
%>
<%=href%>

<% else
''''........

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress,
but let us keep the discussions in the newsgroup)


Daniel 10-30-2004 10:20 AM

Re: Important Media Player
 
What does that code mean?? Do i have to amend it to suit my website??

cheers

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

Evertjan. 10-30-2004 11:23 AM

Re: Important Media Player
 
Daniel wrote on 30 okt 2004 in microsoft.public.inetserver.asp.general:

> What does that code mean??


[please quote, this is not email, but usenet
> Response.ContentType = "video/x-ms-asf"]


> Do i have to amend it to suit my website??


This you have to understand to use it.
Just the pasting will get you nowhere.

If you don't understand,
try to learn about Response.ContentType and streaming media
or do not use the code.

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress,
but let us keep the discussions in the newsgroup)


Daniel 10-30-2004 12:50 PM

Re: Important Media Player
 
If i dun want to use code, then i ask for what? ask for fun??? if i dun
know the code, of course i must ask

cheers

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

dave 10-30-2004 02:37 PM

Re: Important Media Player
 
[please quote, this is not email, but usenet]


<D> wrote in message news:e0ai77nvEHA.3276@TK2MSFTNGP15.phx.gbl...
> If i dun want to use code, then i ask for what? ask for fun??? if i dun
> know the code, of course i must ask
>
> cheers
>
> *** Sent via Developersdex http://www.developersdex.com ***
> Don't just participate in USENET...get rewarded for it!




Daniel 10-30-2004 03:00 PM

Re: Important Media Player
 
Quote what??? I already state my question in the first msg :)

Dear all, anyone know how i can place a media player on my asp page to
allow user to listen to sample songs, etc? or anyone know where to find
the code?? Thanks

cheers

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

Evertjan. 10-30-2004 03:22 PM

Re: Important Media Player
 
Daniel wrote on 30 okt 2004 in microsoft.public.inetserver.asp.general:
> If i dun want to use code, then i ask for what? ask for fun??? if i dun
> know the code, of course i must ask


Dear Daniel,

When asking in a technical forum like this NG, often [and this time] you
get a technical hint for an answer, because one expects you to know the
basics of ASP serverside scripting in VBscript or Jscript.

This has nothing to do with your or my fun, funnily enough.

An expectation of a complete solution will often not be fulfilled,
as this NG is not a payed helpline.

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress,
but let us keep the discussions in the newsgroup)



All times are GMT. The time now is 08:09 PM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57