在Razor DropDownListFor中将HTML呈现为HTML

时间:2018-08-16 15:55:25

标签: razor dropdownlistfor html-rendering

我在以下位置列出了付款人来源:

公共IEnumerable PayorSources {get;组; }

这些付款人来源在@ Html.DropDownListFor中进行了说明,如下所示:

        @Html.DropDownListFor(model => model.EPayorSourceId, Model.PayorSources, “—Select One –“, htmlAttributes: new { @class = “form-control” })

挑战在于这些付款人来源在其中嵌入了Html标签(一件好事),就像这样:

        '<p>One of the Groups, <strong>Plans</strong>, or Products.</p>'

我想在下拉列表中显示为“组,计划或产品之一”。

任何建议将不胜感激!

0 个答案:

没有答案