I'm trying to get the value of a cell from the row selected on my grid using:
Dim getcell As GridRecordItem
getcell = WebGrid1.Behaviors.Selection.SelectedRows(1).Items(1)
Response.Write(getcell.Text.ToString())
But it returns a "index was out of range" message
Changed the indexed value to zero and still am getting an index is out of range message...
Hi,
You should start with 0 for the first selected row and/or item.
Ed