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

asp.net mvc DropDownList

时间:2015-04-19 17:38:45      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:

 ViewBag.TopicInfoID = new SelectList(db.TopicInfo, "TopicInfoID", "TopicName", strategycategory.TopicInfoID);

            var list = db.StrategyCategory.Where(p => p.StrategyCategoryParentID == "0").ToList();
            list.Insert(0, new StrategyCategory() { StrategyCategoryID = "0", StraegyCategoryName = " -- 请选择 -- " });
            SelectList sList = new SelectList(list, "StrategyCategoryID", "StraegyCategoryName",strategycategory.StrategyCategoryParentID);
            ViewBag.StrategyCategoryParentID = sList; 
 @Html.DropDownList("TopicInfoID", String.Empty)
 @Html.DropDownList("StrategyCategoryParentID", String.Empty)

备注:

1、

ViewBag.TopicInfoID中的TopicInfoID和@Html.DropDownList("TopicInfoID", String.Empty)方法中的第一个参数一样

2、
 ViewBag.StrategyCategoryParentID = sList; 

 @Html.DropDownList("StrategyCategoryParentID", String.Empty)





asp.net mvc DropDownList

标签:

原文地址:http://www.cnblogs.com/zoro-zero/p/4439451.html

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