如何使用System.Web.Mvc.SelectListItem

时间:2009-10-19 09:17:14

标签: asp.net asp.net-mvc database

如何为asp.net mvc控制器使用System.Web.Mvc.SelectListItem。

1 个答案:

答案 0 :(得分:8)

1.Write SelectItemList collection在Controller / Action方法中生成代码。

  ViewData["list"] = new List<SelectListItem>
                       {
                         new SelectListItem {Text = "January", Value = "1"},
                         new SelectListItem {Text = "February", Value = "2"},
                         new SelectListItem {Text = "March", Value = "3"}
                       };

2.在Views aspx中编写渲染代码。

<% using (Html.BeginForm()) { %>
  <% = Html.DropDownList("list") %>

  <input type="submit" value="send" />
<% } %>

3.使用ModelBinder在Controller / Action方法中发布值代码。

[HttpPost]
public ActionResult Index(string list)
{
  // process code
}

这段代码怎么样? 最好,关于