Reputation: 41
I want to copy the text of 3rd cell of 4th row of a gridview, in asp.net.
And I am not able to do that...
Can someone help in solving it, with a code...
Upvotes: 1
Views: 350
Reputation: 14781
Use the following:
String text = this.gridView.Rows[3].Cells[2].Text;
Upvotes: 1