I have a table with values
ID PicURL FilePath
1 www.a.com/1.png NULL
2 NULL ~/Images/2.jpeg
In code behind I have
<asp:Image ID="imageControl" runat="server" Width="100" ImageUrl='<%#Eval("FilePath")%>'></asp:Image>
How do I include the case when FilePath is null and ImageURL has to get value from PicURL?
Thanks Rashmi