Ampersand is being HTML Encoded as &. Any way to prevent this?

18.7k Views Asked by At

I have the following block of code that creates an Action Link for a company.

Html.ActionLink(Html.Encode(currentCompany.GetDisplayName()), "CompanyFactsheet", "Company",
                                                       new {friendlyURL = currentCompany.FriendlyURL.ToLower()}, null)%>

Some of the company names contain '&', and this is being rendered as &

Is there a way that I can Html.Encode the company names, but still keep the & symbol as it's supposed to look, rather than &?

3

There are 3 best solutions below

0
On BEST ANSWER

It seems like you don't need to encode when using ActionLink helper method. It encodes internally:

How do I bypass the HTML encoding when using Html.ActionLink in Mvc?

1
On

Double check the markup that is getting generated. The only way that the & should be showing on the page is if you're double encoding the ampersand character (so the source of the page would be showing &).

This could be caused by either storing the character already HTML encoded or you're using <%: (which HTML encodes everything for you automatically) instead of <%= in your View.

1
On

Replace & to some other charachter before saving them, and replace them back AFTER encoding (using jquery most likely)... I know it sounds like overkill, but if you really need the Html.Encode (or <%:, or @ in Razor), this is the best way IMHO....