TagBuilder InnerHtml in ASP.NET 5 MVC 6

后端 未结 6 970
难免孤独
难免孤独 2021-02-07 01:10

It seems to me that there are major breaking changes in TagBuilder as of beta7 with no mention about them in the announcements repo.

Specifically .ToString no longer ren

6条回答
  •  野性不改
    2021-02-07 02:01

    Having lost span.SetInnerText(somestring); it is now possible to do

    span.InnerHtml.SetContent(somestring);

    using Microsoft.AspNetCore.Html.HtmlContentBuilderExtensions.

    This is coming from a perspective of 4.7 with AspNetCore 2.0.1.

提交回复
热议问题