This example shows how to use a custom route when using server binding with Telerik Grid for ASP.NET MVC. The custom route prevents adding query string parameters and makes prettier URLs. Here is the route used for this example:

routes.MapRoute(
    "CustomRoute", 
    "{controller}/CustomRoute/{page}/{orderBy}/{filter}", 
    new 
    { 
        controller = "Grid", 
        action = "CustomRoute", 
        page = 1, 
        orderBy = string.Empty, 
        filter = string.Empty 
    });