0
我有兩個數據包"ViewBag.workSheetNames"
和"ViewBag.selectedName"
。在Html5中顯示選定的下拉列表的價格
"ViewBag.workSheetNames"
包含下拉菜單的選項值和"ViewBag.selectedName"
包含必須在下拉菜單中顯示爲選中的名稱。我正在使用給定的代碼:
@foreach (var item in ViewBag.workSheetNames)
{
if (item == ViewBag.selectedName)
{
<option selected="selected">@item</option>
}
else
{
<option>@item</option>
}
}
請建議任何有效的方法來做同樣的事情。