我有用於顯示頁面大小的下拉菜單。例如將數據從視圖傳遞給控制器在mvc3中獲取呼叫
@Html.DropDownListFor(m => m.PageSize,
new List<SelectListItem>() { new SelectListItem() { Text = "10" },
new SelectListItem() { Text = "20" },
new SelectListItem() { Text = "50" },
new SelectListItem() { Text = "100" }
})
我必須在控制器操作中獲取選定的項目值。
我的行動將只接受撥打電話。我只是不想傳遞查詢字符串。那麼如何實現這一點?
爲什麼POST不可能? – dove
嘗試使用發佈請求。請參閱http://stackoverflow.com/questions/10187469/pass-selectedvalue-of-dropdownlist-in-html-beginform-in-asp-net-mvc-3 http://stackoverflow.com/questions/10119286/passing-下拉菜單選擇的值-從視點到控制器功能於MVC3 – amesh