' TO SELECT A CELL ' Get selected cells Dim selectedCells As SelectedCellCollection = Me.WebDataGrid1.Behaviors.Selection.SelectedCells ' Select cell selectedCells.Add(Me.WebDataGrid1.Rows(0).Items(1)) ' TO UNSELECT A CELL ' Remove first selected cell from collection selectedCells.RemoveAt(0)