I have dropdown which is used for displaying pagesize in view. example as
@Html.DropDownListFor(m => m.PageSize,
new List<SelectListItem>() { new SelectListItem() { Text = "10" },
new SelectListItem() { Text = "20" },
new SelectListItem() { Text = "50" },
new SelectListItem() { Text = "100" }
})
I have to get the selected item value inside controller action.
my action will accept only get call. I just don't want to pass as query string. so how to achieve this?