How to load first x items and give user the option to load more in MVC.NET
问题 What would be the best way to load, for example, the first 25 items of the IEnumerable of an Index view in ASP.NET MVC? I have a model and have created a controller and views using scaffolding. In the index page I create a div containing some info for each instance in the model of the view ( List of Question objects). I would like to display the first 25 items and give the user the possibility to load more using a link at the bottom saying "Load the next 25 questions...". How would this be