Playing a video file in a Website

  • Thread starter Thread starter Uday
  • Start date Start date
U

Uday

Hi Everybody,

I am building a website in Asp.Net 1.1. I need to
play a video file in the site.
How to do this. Please help me out.

Thanks in Advance
Uday Mandava
 
This is not really an ASP.NET question, unless you are asking about custom
controls. I think you have a couple options in HTML, depending on what
browser(s) you are targeting:

<img dynsrc="video.avi" />

<embed src="video.avi" />

<object data="video.avi" type="video/avi" />

From: http://www.w3schools.com/media/media_browservideos.asp

Hope this helps,


Steve
 
Back
Top