2
Answers

User selection of no of records per page in MVC4

Hi, 
 
I have implemented pagination in my MVC application.As of now I am setting 50 records per page.Now my requirement is user should select whatever he will select from the dropdown wher I will show like 10,20,30,40,50,100 in dropdown.When user selects the specific value I have to show the no of records in the page.So how can I achieve this by passing the dropdown selected value to the controller.Please help me on this.cted value to the controller.Please help me on this.
Answers (2)
0
Mahesh Bodepudi

Mahesh Bodepudi

NA 90 14.3k 9y
As of now in Controller's Action method I am using the code below to set no of records per page
 
return View(viewModel.ToList().ToPagedList(page ?? 1, 50)); 
0
Manas Mohapatra

Manas Mohapatra

NA 29.3k 3.3m 9y
How you are getting data from Controller's action: AJAX or direct call to action.
 
Provide some code snippet.