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)
        )
        
 %>

You can set the initial page of the grid by using the PageTo method

<%= Html.Telerik().Grid(Model)
        .Name("Grid")
        .Pageable(paging => paging.PageTo(3))
 %>