hello...
i am creating a video library using asp.net.
i am new with asp.net with c#. in it i use datalist for images and hyperlink of video.
now i want to play video in other page by click on image which have hyperlink of video.
so what to do?
if you want to know what i am looking for then see the links..
this is a movies site.
<asp:DataList ID="DataList1" runat="server" DataSourceID="SqlDataSource1" Height="355px" Width="259px">
<ItemTemplate>
<a runat="server" href ='<%# Eval("video_url") %>'>
image_url:
<asp:image runat="server" ImageUrl='<%# Eval("image_url") %>' Height="186px" Width="206px" /><br />
</a><br />
<br />
</ItemTemplate>
</asp:DataList>
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:ConnectionString %>"
SelectCommand="SELECT [image_url], [video_url] FROM [Table2]"></asp:SqlDataSource>