当图像链接没有扩展名存储在数据库中时,图像按钮不显示图像
我
<asp:ImageButton ID="ImageButton1" runat="server" ImageUrl='<%# Eval("photo", "~/gallery/thumbs\\{0}") %>' PostBackUrl='<%# Eval("ProductID", "gamedetails.aspx?ProductID={0}") %>
在数据列表中使用此代码。
它显示其他信息但不显示图像
i am using this code
<asp:ImageButton ID="ImageButton1" runat="server" ImageUrl='<%# Eval("photo", "~/gallery/thumbs\\{0}") %>' PostBackUrl='<%# Eval("ProductID", "gamedetails.aspx?ProductID={0}") %>
within a datalist.
it displaying other information but not the image
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将标记更改为:
注意我将
\\
更改为/
Change your markup to:
Notice I changed
\\
for/
这是因为您已经初始化了除 ImageSrc 之外的所有属性,可能)
This is because you've initialized all attributes other then ImageSrc, probably )