If you serve the data as a downloadable file it will always open in the clients media player of choice. What you need to do is embed the object in your page.
A lot depends next on what html editor you use to produce your website content... or do you use a text editor?
---------- Post added at 11:51 ---------- Previous post was at 11:43 ----------
Here's an example of embedding Media Player content:
Code:
<OBJECT ID="MediaPlayer" width=320 height=310 classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" codebase="http://activex.microsoft.com/activex/controls/ mplayer/en/nsmp2inf.cab#Version=5,1,52,701" standby= "Loading Media Player" type="application/x-oleobject">
<PARAM NAME="FileName" VALUE="http://www.theale-fireplaces.co.uk/video/showroom11.wmv">
<PARAM NAME="AutoStart" Value="True">
<PARAM NAME="ShowControls" VALUE="True">
<PARAM NAME="ShowStatusBar" VALUE="True">
<EMBED type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" SRC="http://www.theale-fireplaces.co.uk/video/showroom11.wmv" width=320 height=310 name="MediaPlayer" autostart="True" ShowStatusBar=1 ShowControls=1 >
</EMBED>
</OBJECT>