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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top