Click here to Skip to main content
15,949,686 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi all,

How to play video clip from store in local root folder in ASP.net using C#?

Please drop a solution.
Thanks.
Posted
Updated 24-May-14 3:16am
v2

1 solution

give vedio path as a Iframe src and enjoy vedio.. :)

HTML
<html lang="en">
    <head>
        <meta charset="utf-8" />
        <title>Embedded Video Example</title>
    </head>
    <body>
        <h1>Embedded Video Example</h1>
        <p>The following video provides an introduction to WebMatrix:</p>
        <iframe width="560">
                height="315" 
                src="http://www.youtube.com/embed/fxCEcPxUbYA" 
                frameborder="0" 
                allowfullscreen></iframe>
</body>
</html>


else

here is some links for you.. :)

How can i play video in c#[^]

A Simple Video Player Control - Uses[^]

Playing Audio and Video Files Using C#[^]
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900