Arun
Arun

Reputation: 1704

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. 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

Upvotes: 0

Views: 1027

Answers (2)

Nimesh Madhavan
Nimesh Madhavan

Reputation: 6318

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).

Upvotes: 0

SLaks
SLaks

Reputation: 888185

It is not possible to embed Windows Media Player on non-Windows browsers.

You should use the HTML5 <video> tag, with a Flash fallback.

Upvotes: 3

Related Questions