Listbox html帮助器将零对象返回到Post函数

时间:2012-05-29 11:55:57

标签: c# html model-view-controller listbox html-helper

我试图为我创建的模块获取一个列表框。选择器工作(可选实体的标题出现,但控制器中的Post函数没有返回数据。

我不知道你需要什么来帮助我,但这里至少是html代码。

HTML code:

    <div class="field required">
        @Html.LabelFor(model => model.Sessions)
        @Html.ListBox("Sessions", new SelectList(Model.Sessions, "Id", "Title", 1));
        @Html.ValidationMessageFor(model => model.Sessions)
    </div>

1 个答案:

答案 0 :(得分:0)

ViewBag

中使用Controller
ViewBag.Sessions = new SelectList(EntityName, "Id", "Name", entity.ID);    

entity.ID将是您要选择的值

@Html.DropDownList("Sessions", "Select Sessions")