我无法在我的 aspx 页面中使用 If...Else
我试图在一个中继器中显示图像和视频。 为此,我在我的 aspx 页面中使用 if else 。但这并没有返回任何值。谁能帮我解决这个问题?
<% 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") %>' />
} %>
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") %>' />
} %>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试这样的事情;
Try something like this instead;
试试这个
try this
像这样使用它...
Use it like this...