最近在学MVC 遇到一个小问题
我要将Model的资料输出到View上
像这样
<table class="table" border="1">
@foreach (var item in Model)
{
<tr>
<td>
@Html.DisplayFor(modelItem => item.ContentBody)
</td>
</tr>
}
</table>
但是我想要让td内的东西根据不同条件 有些靠左有些靠右
所以我想写成这样
<table class="table" border="1">
@foreach (var item in Model)
{
<tr>
<td if((item.CreateUser == "test"){align="left"} else{align="right"}>
@Html.DisplayFor(modelItem => item.ContentBody)
</td>
</tr>
}
</table>
但是这样语法似乎是有问题的...Visual Studio就不让我过了orz
但是我不知道该怎么改orz...拜托大大指点 谢谢