hai friend's .....
now i am working in web media player website ,i want to create a media player in web application like Youtube , so any one have the idea to create the mediaplayer .... what are the component's required....... and one thing i want to memtion here i am using the asp.net C# to work this media player .....
help me friend's .... thank's in advance........
Niradhip ChakrabortyPosted Apr 22, 2008, 1:10 PM
Hey just add a dll of Windows Media player in ur project through the Com Component.After adding that u can add one button and on the click event
write the following code:
protected void btnSubmit_Click(object sender, EventArgs e)
{
WMPLib.WindowsMediaPlayerClass wm = new WMPLib.WindowsMediaPlayerClass();
}
u can write ur code.i have tried this n this is working fine.u can play the songs from ur ASP.NET page using Windows Media Player.