我需要将代码添加到我的 html 助手中以生成与以下 html 等效的内容:
<div id="buttonrow">@RenderSection("ButtonRow", false)</div>
这可能吗?
这行不通...
public static MvcHtmlString ButtonRow(this HtmlHelper helper)
{
TagBuilder buttonRow = new TagBuilder("div");
buttonRow.GenerateId("buttonRow");
buttonRow.InnerHtml = "@RenderSection('ButtonRow', false)";
return MvcHtmlString.Create(buttonRow.ToString(TagRenderMode.Normal));
}