This example shows the various pager styles supported by Telerik Grid for ASP.NET MVC:

You can customize the pager style, pager position and page size by using the Pageable method:

<%= Html.Telerik().Grid(Model)
        .Name("Grid")
        .Pageable(paging => 
            paging.PageSize(20)
                  .Style(GridPagerStyles.NextPreviousAndNumeric)
                  .Position(GridPagerPosition.Bottom)
        )
        
 %>