I am trying to show both image and Video in a single repeater.
For that i am using if else inside my aspx page. But this is not return any value. Can anyone help me to resolve the issue?
<% if('<%#Eval("UploadType").%> == "V"')
{
<embed src='<%# Eval("FilePath") %>'
type="application/x-shockwave-flash"
allowscriptaccess="always"
allowfullscreen="true" width="150" height="150"></embed>
}
else
{
<asp:ImageButton ID = "ibtnHolder" runat = "server"
Width = "130" Height = "130"
ImageUrl = '<%# Eval("FilePath") %>' />
} %>
Try something like this instead;