Hi friends
This is my coding for showing text in the gridview cell. but i does not show the text rather it something like Datagridview.row.
timetablegrid.Rows[row].Cells[column].Value = teachername + roono;
i want to show this teachername+roono in the cell. how can do it
Loading
Javeed M ShaikhPosted Apr 26, 2013, 10:38 AM
timetablegrid.Rows[row].Cells[column].Value = "sample text";
darma tejaPosted Apr 26, 2013, 9:01 AM
gridView.Rows[1].Cells[1].Value= "text here";
Darma