DropDownList.Optgroup.MVC传递选定的值

时间:2014-04-05 07:05:59

标签: asp.net-mvc-3 dll drop-down-menu

我正在使用DDL DropDownList.Optgroup.MVC (MVC中< optgroup>标记的帮助程序类)

我的代码如下:

MvcApplication1.Models.Database1Context db = new MvcApplication1.Models.Database1Context();
    var data = db.locations.ToList().Select(t => new GroupedSelectListItem
    {
        GroupKey = t.location_group_id.ToString(),
        GroupName = t.location_group.name,
        Text = t.name,
        Value = t.id.ToString()
    });

我没有得到如何传递所选值? (即在这种情况下选择的位置)

如上所述使用数据库上下文时如何处理此问题?

1 个答案:

答案 0 :(得分:0)

试试这个

var data = db.locations.ToList().Select(t => new GroupedSelectListItem
        {
            GroupKey = t.location_group_id.ToString(),
            GroupName = t.location_group.name,
            Text = t.name,
            Value = t.id.ToString(),
            Selected= t.Id == 1;//specify condition you want.
        });