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

解决mvc下dropdownlistfor默认值设置

时间:2015-05-26 15:42:20      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:

http://my.oschina.net/kavensu/blog/307376

关键点在于ViewBag.XX不能与字段名同名。否则无法设置默认值。应该是因为冲突。

例如:

@Html.DropDownListFor(model => model.dept_id, ViewBag.depts as IEnumerable<SelectListItem>,string.Empty, new { style = "width:180px" })

不能写成:

@Html.DropDownListFor(model => model.dept_id,ViewBag.dept_id as IEnumerable<SelectListItem>,string.Empty, new { style = "width:180px" })

 

该办法可以解决后端List<SelectListItem>前端无法获取默认值的情况

解决mvc下dropdownlistfor默认值设置

标签:

原文地址:http://www.cnblogs.com/zglyzi/p/4530569.html

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