Funky
Funky

Reputation: 13612

ASP.NET MVC - How do I implement Paging?

I'm relatively new to MVC and looking to output some data and paginate through it. I don't want some fancy JQuery pagination or anything like that, it has to run server side. I have done this sort of thing previously using Gridviews etc, but not sure how to achieve this using ASP.NET MVC. Does anyone have any ideas how to do this?

I am using the following:

Razor, C# Entity Framework, LINQ

Upvotes: 2

Views: 3877

Answers (2)

Richard Forrest
Richard Forrest

Reputation: 3616

This is a famous tutorial http://nerddinnerbook.s3.amazonaws.com/Part8.htm

Upvotes: 2

Dave Lawrence
Dave Lawrence

Reputation: 3929

I think you'll find that this should help you http://msdn.microsoft.com/en-us/magazine/gg650669.aspx

Upvotes: 1

Related Questions