protected void PendingWorkGridView_OnSorting( object sender, GridViewSortEventArgs e) { // For some reason the SortDirection property is not getting set automatically so set manually e.SortDirection = e.SortExpression.IndexOf( " DESC" ) > 0 ? SortDirection .Descending : SortDirection .Ascending;...