View Single Post
Old Nov 13th, 2006, 9:30 AM   #2
melbolt
Hobbyist Programmer
 
melbolt's Avatar
 
Join Date: Feb 2005
Location: PA, USA
Posts: 242
Rep Power: 4 melbolt is on a distinguished road
Send a message via AIM to melbolt Send a message via Yahoo to melbolt
one way to do it, which really has nothing to do with asp .net but rather html is like so:


html4strict Syntax (Toggle Plain Text)
  1. <object width="320" height="290"
  2. classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95"
  3. id="mediaplayer1">
  4. <param name="Filename" value="kids.mpg">
  5. <param name="AutoStart" value="True">
  6. <param name="ShowControls" value="True">
  7. <param name="ShowStatusBar" value="False">
  8. <param name="ShowDisplay" value="False">
  9. <param name="AutoRewind" value="True">
  10. <embed
  11. type="application/x-mplayer2"
  12. pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/MediaPlayer/"
  13. width="320" height="290" src="/support/dreamweaver/ts/documents/kids.mpg"
  14. filename="kids.mpg" autostart="True"
  15. showcontrols="True" showstatusbar="False"
  16. showdisplay="False" autorewind="True">
  17. </embed>
  18. </object>

stolen from http://www.adobe.com/cfusion/knowled...fm?id=tn_15777



another possible way might be to download the windows media player sdk thing and see if there is a control that you can use in asp .net. here's an example but this is in a regular .Net app, but may be somewhat similar to the way its done in asp as well.
http://www.informit.com/articles/art...?p=101752&rl=1
__________________
I have never let my schooling interfere with my education. -Mark Twain-

Xbox live gamertag: melbolt
melbolt is offline   Reply With Quote