up vote 0 down vote favorite
share [g+] share [fb]

This works:

<asp:Label ID="asdf" runat="server" Text='<%# Eval("Image1") %>'></asp:Label>

displaying data like: L8_Pic_1.jpg

This doesn't:

<asp:Label ID="asdfaf111" runat="server" Text='<%# Eval("Image1").ToString() %>'></asp:Label>

It gives an Object Reference not set to an instance of an object error

I'm aiming to do this:

String.IsNullOrEmpty(Eval("Image1").ToString()) ? "noImage.jpg" : Eval("Image1")
link|improve this question

stackoverflow.com/questions/3410942/… edited; Convert.ToString() around the Eval() rather than .ToString() – Tahbaza Aug 5 '10 at 1:48
feedback

1 Answer

up vote 1 down vote accepted

You're looking for the null coalesce operator. It allows you to do just that pattern with ??:

<%# Eval("Image1") ?? "noImage.jpg" %>

This evaluates as: if Eval("Image1") is not null, return it, otherwise return "noImage.jpg".

link|improve this answer
Thanks TheCloudlessSky – Dave Mateer Aug 5 '10 at 2:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.