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

mvc下拉列表@Html.DropDownListFor的使用

时间:2014-09-26 19:50:08      阅读:415      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   使用   ar   for   sp   

1. 在开始的action里将下拉选项加入动态表达式

       public ActionResult ArticList()
        {
            var articGroupList = articleGroupService.GetList(x => x.IsDeleted == false);    //获取分组列表
            ViewBag.ArticleGroup = new SelectList(articGroupList, "Id", "Name");  //将分组列表加入动态表达式
            return View();
        }

2.View代码:

     @Html.DropDownListFor(model => model.GroupId, (IEnumerable<SelectListItem>)ViewBag.ArticleGroup, new { id="ddlArticleGroup" })

注:加入动态表达式时的参数“Id"  为Value,"Name"为Text。

bubuko.com,布布扣

mvc下拉列表@Html.DropDownListFor的使用

标签:style   blog   http   color   io   使用   ar   for   sp   

原文地址:http://www.cnblogs.com/nygsb2014/p/3995035.html

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