将默认图像设置为asp图像控件
我需要将默认图像设置为asp.net图像控件,因为我使用datalist设置图像url
<asp:Image ID="Image1" runat="server" ImageUrl='<%# DataBinder.Eval(Container.DataItem, "ImgPath")%>'
AlternateText="No Pic" Width="107" Height="86" />
,有时databinder不返回imgpath,所以我需要将默认图像设置为图像控件 tp 当 imgpath 为 null
时显示
i need to set default image to asp.net image control as i use datalist to set image url
<asp:Image ID="Image1" runat="server" ImageUrl='<%# DataBinder.Eval(Container.DataItem, "ImgPath")%>'
AlternateText="No Pic" Width="107" Height="86" />
sometimes databinder doesn't return imgpath so i need to set default image to image Control
tp show it when imgpath is null
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你可以这样做...
You can do like...
在图像控件声明中对图像 url 进行硬编码,并在数据绑定事件期间更改 ImageUrl 属性。
Hard code the image url in your image control declaration and change the ImageUrl property during databinding event.