我有以下MVC 4剃须刀代码:
@for (int i = 1; i <= 100; i++) { if (currentCol == 1) { Html.Raw("<div class=row>"); @*Need to do this because can't have a open div within a if compiler doesnt like it *@ } if (currentCol == maxCol) { Html.Raw("</div>"); } currentCol++; }
我基本上试图通过if语句的不同路径中的开始和结束标签有条件地生成每个div类行的内容.当我使用直接的HTML,编译器不喜欢它,并认为括号是关闭的.看来Html.Raw是我在线搜索的解决方案,但是当我使用Html.Raw时,当我查看源代码时,div不会显示.
有人知道发生了什么吗?
解决方法
尝试使用@前缀Html.Raw调用:
@for (int i = 1; i <= 100; i++) { if (currentCol == 1) { @Html.Raw("<div class=row>"); } if (currentCol == maxCol) { @Html.Raw("</div>"); } currentCol++; }