public ActionResult Index()
{ List<SelectListItem> items = new List<SelectListItem>()
{
new SelectListItem(){Text="Income", Value="income"},
new SelectListItem(){Text="Outcome", Value="outcome"},
}; SelectList generateList = new SelectList(items, "Value", "Text"); ViewBag.drList = generateList;
} @Html.DropDownList("listname",ViewBag.drList as SelectList,"请选择",new {@class="mylist",@id="listID"})
相关文章
- ASP.NET MVC5+EF6+EasyUI 后台管理系统 (源码购买说明)
- DropdownList绑定的两种方法
- 7.7 WPF后台代码绑定如果是属性,必须指定一下数据上下文才能实现,而函数(click)就不用
- 如何在DropDownList中使用实体对象导航属性在我强类型的ASP.NET MVC上创建和编辑视图?
- WPF 触发器的值绑定后台变量,应该如何实现,请大侠帮忙看看啊!!!
- Java:下拉列表绑定后台数据
- DropDownList绑定数据
- spring mvc使用@InitBinder 标签对表单数据绑定
- Mvc中DropDownList 和DropDownListFor的常用方法
- 【spring mvc】后台API查询接口,get请求,后台Date字段接收前台String类型的时间,报错default message [Failed to convert property value of type 'java.lang.String' to required type 'java.util.Date' for property 'createDate';