I have the following code which generates an error in the URL param of "Identifier expected"
Can anyone see what is missing?
<
object CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6" ID="MediaPlayer" type="application/x-oleobject" NAME="Player" WIDTH="320" HEIGHT="300" hspace="0" vspace="0">
<param name="URL" value="http://www.mywebsite.org/VideoPage/Videos/<%=Request.QueryString["vID"]%>" />
<param NAME="AUTOSTART" VALUE="true"/>
<param name="showControls" value="true"/>
<embed WIDTH="320" HEIGHT="300" align="center" hspace="10" SRC="http://www.mywebsite.org/VideoPage/Videos/<%=Request.QueryString["vID"]%>" TYPE="application/x-oleobject" AUTOSTART="true">
</embed>
</object>
<asp:DataList id="ProductsTable" DataSourceID="SqlDataSource1" Runat="Server" GridLines="None" Width="100%" CellPadding="1" CellSpacing="3" RepeatColumns="3" RepeatDirection="Horizontal" ItemStyle-Font-Size="10pt" ItemStyle-VerticalAlign="Top">
<ItemTemplate >
<asp:HyperLink ID="HyperLink2" runat="server" Text='<%# Bind("videoName") %>' NavigateUrl='<%# "Default.aspx?vID=" & Container.DataItem("vID") %>' /> </ItemTemplate>
</asp:DataList>
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:DatabaseConnectionString1 %>"
ProviderName="<%$ ConnectionStrings:DatabaseConnectionString1.ProviderName %>" SelectCommand="SELECT * FROM [Video] ORDER BY videoName">
<SelectParameters>
<asp:QueryStringParameter Name="vID" QueryStringField="vID" Type="string" />
</SelectParameters>
</asp:SqlDataSource>