Question on design of current pagination implementations
- by Freshblood
I have checked pagination implementations on asp.net mvc specifically and i really feel that there is something less efficient in implementations.
First of all all implementations use pagination values like below.
public ActionResult MostPopulars(int pageIndex,int pageSize)
{
}
The thing that i feel wrong is pageIndex and pageSize totally…