I have a repeaer on page .
I binding it .I add a image in it .
<asp:Repeater ID="product" runat="server" >
<ItemTemplate>
<asp:Image ID="Image1" runat="server" Height="120px" Width="120px" ImageUrl='<%# Eval("Image") %>' />
</ItemTemplate>
</asp:Repeater>
I want, if doesn’t exit image in (Eval(“Image”)) show a special image.
It is possible to insert condition in image tag?
You should be able to test to see if the
Eval("Image")is empty like this: