Hi Every Body
I'm a new in VC#.net and want to know How to read the content of a cell in datagridview control.
for exampel i wrote the code below to add an items to the datagridview cells

DataTable table = new DataTable();
DataColumn nameCol;
DataColumn emailCol;
DataColumn telNumCol;
DataRow row = table.NewRow();
row[nameCol] = telRecordObj.GSName;
row[emailCol] = telRecordObj.GSEmail;
row[telNumCol] = telRecordObj.GSTeleNumber;
table.Rows.Add(row);
dataGridView1.DataSource = table.DefaultView;

now what's the code for reading the content of a row of cells