mvc のドロップダウン リストにバインドする必要がある辞書のリストがあります。
public static readonly Dictionary<string, string> lstGender = new Dictionary<string, string>() { { "M", "Male" }, { "F", "Female" } };
lstGender を mvc のドロップダウン リストにバインドするにはどうすればよいですか。
前もって感謝します
mvc のドロップダウン リストにバインドする必要がある辞書のリストがあります。
public static readonly Dictionary<string, string> lstGender = new Dictionary<string, string>() { { "M", "Male" }, { "F", "Female" } };
lstGender を mvc のドロップダウン リストにバインドするにはどうすればよいですか。
前もって感謝します
このようにして..
Dictionary<Int32, string> dict = new Dictionary<int, string>();
dict.Add(0, "All");
dict.Add(1, "Male");
dict.Add(2, "Female");
dict.Add(3, "Snr Citizen");
dict.Add(4, "Children");
ViewBag.Buckets = dict.Select(item => new SelectListItem() { Value = item.Key.ToString(), Text = item.Value });
ビューでは、このようにバインドします
@Html.DropDownList("ddlbucket", (IEnumerable)ViewBag.Buckets)