ASP.NET - How to Play Youtube urls into My Website
Asked By reenu Ch on 13-Mar-13 12:30 AM
How to Play Youtube urls into My Website
string ObjectTag = "";
ObjectTag = ObjectTag + " <object width='425' height='344'>";
ObjectTag = ObjectTag + "<param name='movie' value='"+str+"'/>";
ObjectTag = ObjectTag + "<param name='allowFullScreen' value='true'/>";
ObjectTag = ObjectTag + "<param name='allowscriptaccess' value='always'/>";
ObjectTag = ObjectTag + "<embed src='"+str+"' type='application/x-shockwave-flash' allowscriptaccess='always' allowfullscreen='true' width='425' height='344'></embed>";
ObjectTag = ObjectTag + "</object>";
I Tried this format it woks fine only for embeded files,
But i want to play youtube Urls Please help me ...