I have a function that retrieves data from database and add it into list. My list is ready and shows the data but i want paging on that list so that it shows limited records
Skip and Take extension methods fits your needs.I don't know how is your page structure but you can use a simple for loop to get values like this:
int recordPerPage = 20; for(int i=0; i