playing video in ASP.NET page

asp.net, video

Solution

If it's `HTML5` convert it to `ogg,mp4,WebM` and then upload it to your server then it would be easier and you can do it this way:

<video width="320" height="240" controls="controls">
  <source src="yourmovie.mp4" type="video/mp4" />
  <source src="yourmovie.ogg" type="video/ogg" />
  Your browser does not support the video tag.
</video>

EDIT:

Actually there are tons of samples on the web. Here are some of them.

http://www.aspnet-video.com/aspnetvideo_Demonstration-PlayList-Presentation.aspx

http://www.c-sharpcorner.com/UploadFile/scottlysle/CsharpWebVideo04212007133218PM/CsharpWebVideo.aspx

http://videoplayer.codeplex.com/

Problem

I have a video, and I need to play it in my ASP.NET page's home page, it should play in a customized small area whenever that home page gets loaded. Can anyone help me?

Original source