我有一个包含值的表
ID PicURL FilePath
1 www.a.com/1.png NULL
2 NULL ~/Images/2.jpeg
在我后面的代码中
<asp:Image ID="imageControl" runat="server" Width="100" ImageUrl='<%#Eval("FilePath")%>'></asp:Image>
当 FilePath 为 null 并且 ImageURL 必须从 PicURL 获取值时,如何包含这种情况?
谢谢拉什米