码迷,mamicode.com
首页 > Web开发 > 详细

MVC 中DropDownList 用法

时间:2015-09-04 12:24:31      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

MVC 中DropDownList  用法

后台

技术分享
1 Dictionary<string, int> dc = new Dictionary<string, int>();
2 dc.Add("订单提交", 0);
3 dc.Add("订单确认", 1);
4 dc.Add("已入库", 2);
5 dc.Add("代付款", 3);
6 dc.Add("已支付", 4);
7 dc.Add("出库", 5);
8 SelectList items = new SelectList(dc, "Value", "Key");
9 ViewBag.GenderList = items;
View Code

前台

 @Html.DropDownList("GenderList", (SelectList)ViewBag.GenderList, "--请选择--")

 


MVC 中DropDownList 用法

标签:

原文地址:http://www.cnblogs.com/laopo/p/4781522.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!