我有以下MVC 4剃刀代碼:MVC 4剃刀如果分裂div標籤
@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++;
}
我基本上是試圖生成每一個DIV類行的內容有條件地與不同路徑的開始和結束標記if語句。當我使用直接的HTML時,編譯器不喜歡它,並認爲括號關閉。看起來好像Html.Raw
是我的在線搜索解決方案,但是當我使用Html.Raw
時,div在查看源代碼時不顯示。
有誰知道發生了什麼事?
感謝達林說做到了:) – user2129585