You have to implement your own sorting routine for the Web DataGrid control. The Windows Form DataGrid sorting is free. Just click on the column header you want to sort. You can also sort on a specific column before you bind to the datagrid.

Code:
DataView dv = new DataView(ds.Tables["myTable"]);
dv.Sort = "columnName DESC";
dataGrid.DataSource = dv;