How do I embed Windows Media into a web page?
Copy & paste the following code in your Web page:
<OBJECT ID="MediaPlayer"
WIDTH="320" HEIGHT="240" CLASSID="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95"
TYPE="application/x-oleobject">
<PARAM NAME="FileName" VALUE="http://ServerHere/YourFolderHere/NameofYourMediaFileHere.wmv">
<PARAM NAME="autostart" VALUE="1">
<PARAM NAME="showcontrols" VALUE="0">
<EMBED TYPE="application/x-mplayer2"
SRC="http://ServerHere/YourFolderHere/NameofYourMediaFileHere.wmv"
WIDTH="320"
HEIGHT="240"
AUTOSTART="1"
SHOWCONTROLS="0">
</EMBED>
</OBJECT>