使用Razor的MVC 4中的DropDownList

问题描述

@{
   List<SelectListItem> listItems= new List<SelectListItem>();
   listItems.Add(new SelectListItem
        {
          Text = "Exemplo1",
          Value = "Exemplo1"
        });
   listItems.Add(new SelectListItem
        {
            Text = "Exemplo2",
            Value = "Exemplo2",
            Selected = true
        });
   listItems.Add(new SelectListItem
        {
            Text = "Exemplo3",
            Value = "Exemplo3"
        });
}

@Html.DropDownListFor(model => model.tipo, listItems, "-- Select Status --")

解决方法

我正在尝试DropDownList在剃刀视图上创建一个。

有人可以帮我吗?

普通的HTML5代码:

<select id="dropdowntipo">
    <option value="Exemplo1">Exemplo1</option>
    <option value="Exemplo2">Exemplo2</option>
    <option value="Exemplo3">Exemplo3</option>
</select>

我尝试了这个:

@{
    var listItems = new List<ListItem> { 
        new ListItem { Text = "Exemplo1",Value = "Exemplo1" },new ListItem { Text = "Exemplo2",Value = "Exemplo2" },new ListItem { Text = "Exemplo3",Value = "Exemplo3" } 
    };
}

@Html.DropDownListFor(model => 
    model.tipo,new SelectList(listItems),"-- Select Status --"
)