web-dev-qa-db-ja.com

@ Html.DropDownListForオプションを追加する方法?

@Html.DropDownListFor(model => model.ZipFile, new SelectList(ViewBag.ZipFiles))

上記のコードは、selectリストをうまく作成します。しかし、私は選択をオプションにしたいと思います。残念ながら、空のオプションはありません。1つ追加したいと思います。これをどのように実行しますか?

21
Shane LeBlanc

proper DropDownListFor overload を使用する:

@Html.DropDownListFor(
    model => model.ZipFile, 
    new SelectList(ViewBag.ZipFiles),
    "-- please select a Zip file --"
)
47
Darin Dimitrov
@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"})
7
user5093080

コントローラーで、ViewBag.ZipFilesを設定するときに、そのコレクションにSelectListItemを追加します。

1
Giscard Biamby