Html.Encode() doesn't encode a space - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T23:38:29Zhttp://stackoverflow.com/feeds/question/397477http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/397477/html-encode-doesnt-encode-a-space0Html.Encode() doesn't encode a spaceboris callens2008-12-29T10:49:40Z2009-03-27T00:12:37Z
<p>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 &nbsp;<br />
I thought </p>
<pre><code>Html.Encode(" ");
</code></pre>
<p>would fix this for me, but apparantly, it just returns " ".
I could implement this logic as follows</p>
<pre>
Html.Encode(theString).Equals(" ")?"&nbsp;":Html.Encode(theString);
</pre>
<p>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?</p>
http://stackoverflow.com/questions/397477/html-encode-doesnt-encode-a-space/397486#3974860Answer by Bombe for Html.Encode() doesn't encode a spaceBombe2008-12-29T10:54:37Z2008-12-29T10:54:37Z<p>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.</p>
http://stackoverflow.com/questions/397477/html-encode-doesnt-encode-a-space/397531#3975312Answer by devio for Html.Encode() doesn't encode a spacedevio2008-12-29T11:18:53Z2008-12-29T11:18:53Z<p>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.</p>
<p>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 ;)</p>
<pre><code>public class MyHtml
{
public static string Encode(string s)
{
if (string.IsNullOrEmpty(s) || s.Trim()=="")
return "& nbsp;";
return Html.Encode(s);
}
}
</code></pre>
http://stackoverflow.com/questions/397477/html-encode-doesnt-encode-a-space/688029#6880290Answer by system PAUSE for Html.Encode() doesn't encode a spacesystem PAUSE2009-03-27T00:12:37Z2009-03-27T00:12:37Z<p>It might be simpler to convert the <code>" "</code> to <code>"\xA0"</code> and then unconditionally <code>Html.Encode</code> the result:</p>
<pre><code>s = (string.IsNullOrEmpty(s) || s.Trim()=="") ? "\xA0" : s;
Html.Encode(s);
</code></pre>
<p>Hexadecimal <code>00A0</code> identifies the Unicode character for non-breaking space, which is why <code>&#xA0;</code> is an equivalent HTML entity to <code>&nbsp;</code>.</p>
<p>If you have any control over the database, you could convert the empty or single-space fields to this <code>"\xA0"</code> value, which would eliminate the condition altogether.</p>