vote up 0 vote down star
1

In my asp.net-mvc website I have a field that usually has a string (from database) but can from time to time contain nothing. Because IE doesn't know how to handle the css "empty-cells" tag, empty table cells need to be filled with an  
I thought

Html.Encode(" ");

would fix this for me, but apparantly, it just returns " ". I could implement this logic as follows

Html.Encode(theString).Equals(" ")?" ":Html.Encode(theString);

Also a non-shorthand-if would be possible but frankly, both options are but ugly. Isn't there a more readable, compact way of putting that optional space there?

flag

68% accept rate
had to break up the & nbsp; because the SO view renders it as HTML – boris callens Dec 29 '08 at 10:50
Please escape   in the line "...need to be filled with an   I thought..." – Mohit Nanda Dec 29 '08 at 10:57
Avoid calling Html.Encode twice for efficiency reasons. – kgiannakakis Dec 29 '08 at 10:58
Not knowing the language, but shouldn't it be like this: encoded = theString.Equals("")?" ":Html.Encode(theString); – some Dec 29 '08 at 11:06
Yes, you are both right, but this was just a way of showing how unreadable such a solution would become. – boris callens Dec 29 '08 at 12:13

3 Answers

vote up 2 vote down check

A space encode in HTML is just a space. nbsp may look like a space, but has a different semantics, "non-breaking" meaning that line breaks are suppressed.

Solution: Whenever I find functionality lacking or with unexpected behavior (e.g. asp:Label and HyperLink don't HTML encode), I write my own utilities class which does as I say ;)

public class MyHtml
{
    public static string Encode(string s)
    {
        if (string.IsNullOrEmpty(s) || s.Trim()=="")
            return "& nbsp;";
        return Html.Encode(s);
    }
}
link|flag
Yes, I was planning something like this. But before I start implementing my own (and introduce possible change dependancies/bugs) I wanted to be sure there is no better solution. – boris callens Dec 29 '08 at 12:11
vote up 0 vote down

You have to find a different way to fill your empty cell. HTML-encoding a space character to itself is perfectly valid. If you need it to be something else you could use URL escaping or roll your own method to generate the content.

link|flag
vote up 0 vote down

It might be simpler to convert the " " to "\xA0" and then unconditionally Html.Encode the result:

s = (string.IsNullOrEmpty(s) || s.Trim()=="") ? "\xA0" : s;
Html.Encode(s);

Hexadecimal 00A0 identifies the Unicode character for non-breaking space, which is why   is an equivalent HTML entity to  .

If you have any control over the database, you could convert the empty or single-space fields to this "\xA0" value, which would eliminate the condition altogether.

link|flag

Your Answer

Get an OpenID
or

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