MVC DropDownListFor 的小问题

 

<%= Html.DropDownListFor(model  =>  model.PID, (IEnumerable < SelectListItem > )ViewData[ " MainItemOfGame " ],  " 请选择 " ) %>

 

 

 

ViewData的名不能和DropDownList的name 相同,否则,DropDownList不会设为model => model.PID的值对应的选项。

 

 

你可能感兴趣的:(list)