Html.ActionLink 文本样式

Html.ActionLink text styling

我只想设置 ActionLink 中部分文本的样式,我需要加号加粗。纯粹的html我可以这样做。

<a class="topMenu" href="#"><span style="font-weight:bold;">+</span>Invite User</a>

如果像这样用 ActionLink 试试:

@Html.ActionLink("<span style="font-weight:bold;">+</span>Invite User", "Invite", "Account", new { @class = "topMenu" })

它按原样呈现,就像一行文本。

是否可以将其设计成纯 HTML 的样式?

我会用 Url.Action

<a class="topMenu" href="@Url.Action("Invite", "Account")">
    <span style="font-weight:bold;">+</span>Invite User
</a>