Is there a shorter version of the following:

Using ASP.NET MVC, this is in the HTML page

<%= IsTrue ? Html.Image("~/images/myimage.gif") : "" %>

I know I'm only really writing 3 extra characters, just wondering if there is something better.

link|improve this question

What are you trying to shorten it to? – Robin Day Sep 15 '09 at 11:10
feedback

3 Answers

up vote 6 down vote accepted

No there is not, the ? operator is itself a short hand for the if else statement.

link|improve this answer
5  
The conditional operator can only be used as an expression, while if is obviously a statement. One is not short hand for the other as they are conceptually different. – Thorarin Sep 15 '09 at 11:12
feedback

It might be acceptable to create html helper:

public static string ImageIf(this HtmlHelper helper, condition, url){
    return condition ? helper.Image(url) : "";
}

usage:

<%= Html.ImageIf(IsTrue, "~/images/myimage.gif") %>
link|improve this answer
feedback

Not for the case you outlined.

If you are doing a null check on A you could write var b = A ?? string.Empty;

Kindness,

Dan

link|improve this answer
This one is handy when passing model to strongly typed partial because if null is provided - partial automagically receives model from view. – Arnis L. Sep 15 '09 at 11:19
feedback

Your Answer

 
or
required, but never shown

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