0
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
How you are getting data from Controller's action: AJAX or direct call to action.
Provide some code snippet.