我需要动态设置 @Html.DropDownList 的 id
这是我的 MVC 视图的一部分
@{
row_number = 0;
}
.....
@foreach (var item in Model)
{
.....
<div style="float:left;width:100px">
@Html.DropDownList("ID_", new SelectList(ViewBag.LISTA_LINEE, "Value", "Text"),string.Empty)
</div>
........
row_number = row_number + 1;
}
我需要添加
row_number
动态下拉列表 ID 的值。
什么是正确的语法?
非常感谢你!