asp.net 转发器控件
我想做的是在中继器中显示图像。我正在从数据库中获取图像名称,但我试图从图像文件夹中引用图像名称,目前这就是我所拥有的:
<asp:Image ID="Image1" runat="Server" ImageUrl='~/Images/<%#DataBinder.Eval(Container.DataItem, "ProductImage")%>' />
但它不起作用,只有图像名称显示在中继器中。
请大家帮忙。 预先非常感谢!
what i am trying to do is display an image in a repeater. I am getting the image name from the database but i am trying to reference the image name from a image folder, at the moment this is what i have:
<asp:Image ID="Image1" runat="Server" ImageUrl='~/Images/<%#DataBinder.Eval(Container.DataItem, "ProductImage")%>' />
but it is not working, only the image name is displayed in the repeater.
Please any help will do guys.
Thanks alot in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试
Try
请改用 HTML img 标签:
Use the HTML img tag instead:
试试这个。
Try this.