Hi,
if ur using Asp.net then u can ue Object or Embed Tag..
<OBJECT
ID="MediaPlayer"
STYLE="POSITION:ABSOLUTE; LEFT:10px; top:100px;"
classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95"
CODEBASE=
"http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715"
width=320 height=240
standby="Loading Microsoft Windows Media Player components..."
type="application/x-oleobject">
<PARAM NAME="FileName" VALUE="path.avi">
<PARAM NAME="TransparentAtStart" Value="false">
<PARAM NAME="AutoStart" Value="true">
<PARAM NAME="AnimationatStart" Value="true">
<PARAM NAME="ShowControls" Value="true">
<PARAM NAME="ShowPositionControls" Value="false">
<PARAM NAME="ShowStatusBar" Value="true">
<PARAM NAME="autoSize" Value="false">
<PARAM NAME="displaySize" Value="0">
<Embed type="application/x-mplayer2"
pluginspage="http://www.microsoft.com/isapi/redir.dll?prd=windows&sbp=mediaplayer&ar=Media&sba=Plugin&"
src="path.avi"
Name=MediaPlayer
AutoStart=1
Width=320 Height=240 transparentAtStart=0
animationAtStart=1
ShowControls=1
ShowPositionControls=0
ShowStatusBar=1
autoSize=0
displaySize=0></embed>
</OBJECT>
OR
<embed src="video.avi" />
Or
u can also use simple Link..
<a href="video.avi">Play a video file</a>
for more Information
http://www.w3schools.com/media/media_browservideos.asp
Thanks
Avinash Tiwari
Remember to click “Mark as Answer” on the post, if it helps you.
MY Blog Hacking Inside .net exe