Click here to Skip to main content
15,895,833 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
XML
<%@ Page Title="" Language="C#" MasterPageFile="~/Student/student.Master" AutoEventWireup="true"
    CodeBehind="Videos Web Technology.aspx.cs" Inherits="Virtual_Classroom.Student.Videos_Web_Technology" %>

<asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
    <asp:DataList ID="DataList1" runat="server">
        <ItemTemplate>
            <u>
                <%# Eval("Name") %></u>

            <a class="player" style="height: 300px; width: 300px; display: block" href='<%# Eval("id", "FileCS.ashx?id={0}") %>'>
            </a>
        </ItemTemplate>
    </asp:DataList>
    <script src="~/FlowPlayer/flowplayer-3.2.11.min.js" type="text/javascript"></script>
    <script type="text/javascript">
   flowplayer("a.player", "FlowPlayer/flowplayer-3.2.16.swf", {
    plugins: {
        pseudo: { url: "FlowPlayer/flowplayer.pseudostreaming-3.2.11.swf" }
    },
    clip: { provider: 'pseudo', autoPlay: false},
   <big> });</big>
    </script>
</asp:Content>
Posted
Updated 26-Mar-15 20:01pm
Comments
Nathan Minier 27-Mar-15 7:24am    
<big> });</big>
That's not right.

And would cause that error.
Sinisa Hajnal 27-Mar-15 8:19am    
This could also be the reason why your movies don't run :)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900