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

mvc SelectList selected失效的解决方法

时间:2014-12-10 10:39:56      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:style   io   color   sp   strong   on   bs   cti   html   

 

ViewBag.QuestionnaireType = new SelectList(questionCollectionTypeList, "CodeID", "CodeName", selectValue).AsEnumerable();

@Html.DropDownList("QuestionnaireType", ViewBag.QuestionnaireTypes as SelectList, new { @class = "select3" })

上面的写法是错误的,标红的地方名称不能相同。

下面的写法是正确的。

ViewBag.QuestionnaireTypes = new SelectList(questionCollectionTypeList, "CodeID", "CodeName", selectValue).AsEnumerable();

@Html.DropDownList("QuestionnaireType", ViewBag.QuestionnaireTypes as SelectList, new { @class = "select3" })

 

 

具体原因带查找。

mvc SelectList selected失效的解决方法

标签:style   io   color   sp   strong   on   bs   cti   html   

原文地址:http://www.cnblogs.com/eggTwo/p/4154693.html

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