我正在使用 ViewData 将 List<string> 传递给我的视图:
// Controller:
ViewData["myList"] = new SelectList(new List<string>(new[] "AAA", "BBB", "CCC" }));
我使用这个 List 来填充 ListBox:
// View:
@Html.ListBox("myList")
在发布时,我检索选定的项目,如下所示:
// Controller:
string myList = form["myList"]
到目前为止一切顺利,但选定的项目都在 Post 上被清除。
如何使所选项目在请求中保持不变?