1.view有User这一个model2.将列表中选择的用户名,随asp-controller的action提交到后台
@Html.DropDownList("id",@ViewBag.User,"请选择",new {@class="form-control"})
Action里面写ViewResult MyAction(User model){UpdateViewModel(model);此时 model.id 就是你的选择}