play video on myweb page
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
hi i want show the video on the asp.net page please guide me thank you
-
hi i want show the video on the asp.net page please guide me thank you
use
<embed runat="Server" id="embed1" type="application/x-mplayer2"
pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/MediaPlayer/"
width="424" height="379"
autostart="1" showcontrols="1" showstatusbar="1">
</embed>
</object>
this code to show media player.
and to play and provide urll to the videoprotected void DataList1_ItemCommand1(object source, DataListCommandEventArgs e)
{
try
{
if (e.CommandName == "select")
{
embed1.Attributes.Add("src", @"http://~/Uploads4/");
embed1.Attributes.Add("filename", Server.MapPath(e.CommandArgument.ToString()));
this.modal1.Show();
}
}
catch (Exception ex)
{
Response.Write(ex.ToString());
}}