Html.Encode() doesn't encode a space - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T23:38:29Z http://stackoverflow.com/feeds/question/397477 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/397477/html-encode-doesnt-encode-a-space 0 Html.Encode() doesn't encode a space boris callens 2008-12-29T10:49:40Z 2009-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 &amp;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(" ")?"&amp;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#397486 0 Answer by Bombe for Html.Encode() doesn't encode a space Bombe 2008-12-29T10:54:37Z 2008-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#397531 2 Answer by devio for Html.Encode() doesn't encode a space devio 2008-12-29T11:18:53Z 2008-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 "&amp; nbsp;"; return Html.Encode(s); } } </code></pre> http://stackoverflow.com/questions/397477/html-encode-doesnt-encode-a-space/688029#688029 0 Answer by system PAUSE for Html.Encode() doesn't encode a space system PAUSE 2009-03-27T00:12:37Z 2009-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>&amp;#xA0;</code> is an equivalent HTML entity to <code>&amp;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>