使用Html.DropDownList

在MVC项目中,需要使用DropDownList绑定Model数据。

目前使用的方法:

先定义SelectListItem的list类型

  
    
<% var VisitCaselist = new List < SelectListItem > () {
(
new SelectListItem() { Text = " " , Value = " " , Selected = true }),
(
new SelectListItem() { Text = " 成功回访 " , Value = " 成功回访 " }),
(
new SelectListItem() { Text = " 不成功回访 " , Value = " 不成功回访 " }),
(
new SelectListItem() { Text = " 无需回访 " , Value = " 无需回访 " })
};
%>

再使用DropDownList进行绑定

  
    
<%= Html.DropDownList( " Edit_VisitCase " , VisitCaselist, Model.VisitCase) %>
oK

你可能感兴趣的:(html)