Currently attempting to utilize Eval in order to play a flv file from a database that is stored in a table. There could potentially be multiple videos, so my approach is to list them out and define their paths accordingly.
<ItemTemplate>
<asp:HyperLink ID="FLAlink" runat="server" NavigateUrl='javascript:playFlash("<%# Eval("link") + "flv" %>");'><asp:Image ID="Image2" runat="server" ImageUrl="fla-button.png" /></asp:HyperLink>
</ItemTemplate>
This is what I have so far. However, the video is not playing in the embedded section of my page. I am unsure of what might be missing. Any suggestions on how to improve this would be greatly appreciated.