Embed a windows media player in a web page during runtime in c# and asp.net
i want to embed windows media player in my own created web page.开发者_JAVA百科 can any one please guide me how can i do it in c# and Asp.net. that also should be supported in all browsers.
Thanks in advance, Arun
It is not possible to embed Windows Media Player on non-Windows browsers.
You should use the HTML5 <video>
tag, with a Flash fallback.
Have a look at this page. The procedure should be the same for ASP.NET also.
As SLaks suggested explore the HTML5 video tag option also. Both has its advantages and disadvantages, your target audience should drive which option you go with(if you have a lot of IE6/7/8 users, HTML5 wont work for them).
精彩评论