创建一个静态class和静态方法
public static class Class1
{
public static MvcHtmlString allenTry(this HtmlHelper helper, string id)
{
var html = "<div>ddd</div>";
return new MvcHtmlString(html.ToString());
}
}
然后在前台View
@Html.allenTry("a")
就可以了
时间: 2024-10-07 11:25:21