在我的 MVC 应用程序中,我有一个注册,其中我有一个下拉列表Gender
来填充我已在视图中包含代码
@Html.DropDownList("Gender", new List<SelectListItem>{
new SelectListItem {Text="Male" , Value="Male"},
new SelectListItem{Text= "Female",Value="Female"},
},"Select Gender")
但是在编辑而不是绑定正确Gender
时,它采用默认值。例如对于人Test
来说,Gender
是Male
,但是在编辑器页面上它显示的是默认值Select Gender
,而不是显示为Male