I would like to do paging, sorting, filtering for a table in asp.net mvc3 razor without using webgrid. I had seen paged list..
here the paging appears like this << < Prev Next> >> But i would like to display the paging format same as like in webgrid like < 1 2 3 4 5 > is it possible.. If not can any one please suggest me another method.
You can use
SkipandTakefrom Linq to implement paging: other questionAnd you can use
Whereto filter andOrderByto order