stream video from Youtube To ASPX Page Help Needed
-
Hi, I need to stream videos from youtube to my webapplication dynamicaaly... I done with static.But my need is different.now i am briefly explain the details... I have different products.all the products have differenet videos.(all the product details are entering in admin side including the movie tag which are stored in a table SQLSERVER2000 DB) I shown the products in different images.while clicking the products details are displayed in another page.There is a button to watch the movie.while clicking the button the corresponing movie want to stream.while the user select the products,it shows all the details with a button to watch movie(all are comes under user side),only the corresponding movie want to run..videos are uploaded in youtube...all the products movie want to stream in the same page..My problem arises here..i can now stream only one movie,if i give the corresponding object tag.How dynamically stream the videos based on the choice without multiple buttons???Please help to solve... i cant know how to embed object tags(movie tags )dynamically....If knows Please share me... Thanks & Regards Bijesh
-
Hi, I need to stream videos from youtube to my webapplication dynamicaaly... I done with static.But my need is different.now i am briefly explain the details... I have different products.all the products have differenet videos.(all the product details are entering in admin side including the movie tag which are stored in a table SQLSERVER2000 DB) I shown the products in different images.while clicking the products details are displayed in another page.There is a button to watch the movie.while clicking the button the corresponing movie want to stream.while the user select the products,it shows all the details with a button to watch movie(all are comes under user side),only the corresponding movie want to run..videos are uploaded in youtube...all the products movie want to stream in the same page..My problem arises here..i can now stream only one movie,if i give the corresponding object tag.How dynamically stream the videos based on the choice without multiple buttons???Please help to solve... i cant know how to embed object tags(movie tags )dynamically....If knows Please share me... Thanks & Regards Bijesh
Sorry. I forget your last post... Steps: 1. Add one button and one Literal control. 2. In Button_click 2.1. Get the completed embed object tag from database depend on the parameter 2.2. Set the string to Literal1.Text (e.g.
Literal1.Text = @" EMBEDDED TAG FROM DATABASE";
) That's all.. Let me know if you are not clearThanks and Regards, Michael Sync ( Blog: http://michaelsync.net)
-
Sorry. I forget your last post... Steps: 1. Add one button and one Literal control. 2. In Button_click 2.1. Get the completed embed object tag from database depend on the parameter 2.2. Set the string to Literal1.Text (e.g.
Literal1.Text = @" EMBEDDED TAG FROM DATABASE";
) That's all.. Let me know if you are not clearThanks and Regards, Michael Sync ( Blog: http://michaelsync.net)
Hi, Please Explain some more...if am taking object tag from database and assigned to Literal.How is the movie working?If I need to assign only the object tag to Litteral.am i correct? Thanks Bijesh
-
Hi, Please Explain some more...if am taking object tag from database and assigned to Literal.How is the movie working?If I need to assign only the object tag to Litteral.am i correct? Thanks Bijesh
bijeshputhalath wrote:
assign only the object tag to Littera
Yeah. You need to assign the object tag to Literal.... then, the movie player will be shown in your page. So, the user can click to play the movie...
Thanks and Regards, Michael Sync ( Blog: http://michaelsync.net)
-
bijeshputhalath wrote:
assign only the object tag to Littera
Yeah. You need to assign the object tag to Literal.... then, the movie player will be shown in your page. So, the user can click to play the movie...
Thanks and Regards, Michael Sync ( Blog: http://michaelsync.net)
Hi Michael, Thank You for Your Help.Now it is Working fine...But Loading Takes time.. Regards Bijesh