@Html.DropDownListFor(model => model.ZipFile, new SelectList(ViewBag.ZipFiles))
上記のコードは、selectリストをうまく作成します。しかし、私は選択をオプションにしたいと思います。残念ながら、空のオプションはありません。1つ追加したいと思います。これをどのように実行しますか?
proper DropDownListFor overload を使用する:
@Html.DropDownListFor(
model => model.ZipFile,
new SelectList(ViewBag.ZipFiles),
"-- please select a Zip file --"
)
@Html.DropDownListFor(model => model.Country, new List<SelectListItem>
{
new SelectListItem { Text = "India", Value = "1"},
new SelectListItem { Text = "USA", Value = "2"},
new SelectListItem { Text = "Sreelanka", Value = "3"},
new SelectListItem {Text = "Africa",Value="4"},
new SelectListItem { Text = "China", Value = "5" },
new SelectListItem { Text = "Austraila", Value = "6" },
new SelectListItem { Text = "UK", Value = "7" }
}, "Select Country",
new {@Style = "Width:500px;height:40px;",
@class = "form-control input-lg"})
コントローラーで、ViewBag.ZipFilesを設定するときに、そのコレクションにSelectListItemを追加します。