Equivalent for MvcHtmlString in ASP.NET 5?

前端 未结 2 1902
无人及你
无人及你 2020-12-30 19:03

Is there an equivalent for MvcHtmlString in ASP.NET 5 ? Otherwise, how can we render HTML output from my custom HTMLHelper method properly ?

2条回答
  •  长发绾君心
    2020-12-30 19:48

    There is no longer need for MvcHtmlString (which added on top of HtmlString for compatibility reasons) so you can simply use Microsoft.AspNet.Mvc.Rendering.HtmlString.

    As you can easily notice, the ViewComponents and Helpers of Asp.Net 5 are also using (by returning) the same HtmlString to the views.

    Update (for ASP.NET Core 3.1):

    You need to use Microsoft.AspNetCore.Html.HtmlString instead.

提交回复
热议问题