我是MVC的初学者,现在我想在表单中使用Drop down? 我已经尝试使用Dropdownlistfor但它无法正常工作我们需要任何其他脚本。
答案 0 :(得分:0)
下拉有动态/数据库值吗?是? 作为第一步,您需要具有具有下拉值的模型属性,例如
public List<States> StatesDDL
{ get; set;} // get the list of values here.
静态下拉? 使用纯HTML
<select id="_ddlStates">
<option></option>...
</select>
祝你好运......
答案 1 :(得分:0)
在控制器的操作方法中,您必须设置一个填充列表的视图包。
ViewBag.StudentID = new SelectList(db.Students, "StudentID", "Name");
在View中只使用DropDownList Html Helper
@Html.DropDownList("StudentID", String.Empty)