标签:
有时需要在render页面时判断后端的一个变量是否为true/false,并使用Razor Render为1个字符串,可以使用这个扩展方法:
public static class MvcExtension { public static MvcHtmlString AssignIfTrue(this HtmlHelper helper, bool value, string assignValue) { return value ? new MvcHtmlString(assignValue) : new MvcHtmlString(""); } }
使用时:
<div style="@Html.AssignIfTrue(@Model.Hide, "none")"> </div>
Asp.net MVC中1个小技巧- HTML 扩展方法 AssignIfTrue
标签:
原文地址:http://blog.csdn.net/lan_liang/article/details/45766759