Unfortunately those values are hardcoded in the MvcContrib.UI.Grid.HtmlTableGridRenderer<T> class:
// MvcContrib.UI.Grid.HtmlTableGridRenderer<T>
private RouteValueDictionary CreateRouteValuesForSortOptions(GridSortOptions sortOptions, string prefix)
{
if (string.IsNullOrEmpty(prefix))
{
return new RouteValueDictionary(sortOptions);
}
return new RouteValueDictionary(new Dictionary<string, object>
{
{
prefix + ".Column",
sortOptions.Column
},
{
prefix + ".Direction",
sortOptions.Direction
}
});
}
The CreateRouteValuesForSortOptions private method is invoked by the RenderHeaderText virtual protected method. So if you want to have lowercase parameter names one possibility would be to write a custom GridRenderer<T>.
Another possibility is to write a custom Route to make urls lowercase. You may take a look at the following blog post which illustrates how to make all urls in an application to be lowercase but you could tweak it to your needs.