I want to style only part of text inside my ActionLink, I need the plus sign to be bold. In pure html I can do it this way.
<a class="topMenu" href="#"><span style="font-weight:bold;">+</span>Invite User</a>
If try it with ActionLink like this:
@Html.ActionLink("<span style="font-weight:bold;">+</span>Invite User", "Invite", "Account", new { @class = "topMenu" })
It gets rendered as it is, just as a line of text.
Is it possible to get it styled like in pure HTML
?