New at video from .NET

  • Thread starter Thread starter WDS
  • Start date Start date
W

WDS

Hello, I have a Visual Studio .Net application. In a buttom of my aspx page
I need to click and be able to display a video that I will have the file in
the server. What is a good link to start researching about this? The final
purpuse is be able to put the video from a specific minute depending on the
record selected from a datagrid.

Thanks for your help
Jennyfer
 
WDS,

You may be better off posting this in the
microsoft.public.dotnet.framework.aspnet forum. However it is not really an
ASP.NET question either.

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

As far as seeking the specific minute, you would need to look into the API
of the specific video plugin you plan on using to see whether this is
possible.

Hope this helps,


Steve
 
Back
Top