数据库查询插入到转发器中。其中一个字段是图像。只有一些数据行有图像,所以如果它们确实有图像,它工作正常,但如果数据库中没有图像,它会显示图像应该在的空白点。如果数据库中没有图像,我希望它没有那个空白图像渲染。我该怎么做呢?有些行有图像,有些行没有。我想显示所有行,但是没有图像,我不希望出现空白图像
asp:Repeater id="cdcatalog" runat="server" onitemcreated="cdcatalog_ItemCreated" onitemcommand="cdcatalog_ItemCommand">
<ItemTemplate>
< img src='<%# "/contents/thumbs/" + Eval("ThumbName")%>' width="375px" height="200px"
</ItemTemplate>
</asp:Repeater>
Page Load:
Dim cmd As New SqlCommand("SELECT * From Video", con)
Dim ds = New DataSet()
Dim da = New SqlDataAdapter(cmd)
da.Fill(ds)
cdcatalog.DataSource = ds
cdcatalog.DataBind()