Posted on: 9/15/2015 2:58:26 PM | Views : 812

I have a HTML5 Video in a gridview. The URL to the video is pulled from the database. The shell of the video displays but the video does not. When I view the source code and copy the URL for the rendered path the video does work - just not in my application. I am seeing the following error: Not allowed to load local resource.

Here is my code:
<asp:GridView ID="gvVideo" runat="server" AutoGenerateColumns="False" DataSourceID="SqlDataSource1"> <Columns> <asp:TemplateField> <EditItemTemplate> <asp:TextBox runat="server" Text='<%# Bind("PresentationPath") %>' ID="TextBox1"></asp:TextBox> </EditItemTemplate> ...

Go to the complete details ...