您好我已经从控制器中将列表项作为选择列表传递出去了。
从数据库中检索其他数据
var pairList = new List<KeyValuePair<String, Int32>>();
var pair = new KeyValuePair<string, int>("Daily", 0);
pairList.Add(pair);
pair = new KeyValuePair<string, int>("Weekly", 7);
pairList.Add(pair);
//pair = new KeyValuePair<string, int>("Bi-Weekly", 14);
//pairList.Add(pair);
pair = new KeyValuePair<string, int>("Monthly", 30);
pairList.Add(pair);
ViewBag.frequency = new SelectList(pairList, "Value", "Key", null);
它的视图我是在页面加载时显示所选值。
通过一些工作,我从其他功能中获得所选的值,如7或30等,这也是动态的
<td id="testa">
@Html.DropDownList("testddl", ViewBag.frequency as SelectList)
</td>
如何设置所选值。
Thnaks Binaya