我有用于在视图中显示页面大小的下拉列表。例如作为
@Html.DropDownListFor(m => m.PageSize,
new List<SelectListItem>() { new SelectListItem() { Text = "10" },
new SelectListItem() { Text = "20" },
new SelectListItem() { Text = "50" },
new SelectListItem() { Text = "100" }
})
我必须在控制器操作中获取选定的项目值。
我的行动将只接受接听电话。我只是不想作为查询字符串传递。那么如何实现呢?