Coping the text of gridview cell in asp.net
I want to copy the text of 3rd cell of 4th row of a gri开发者_如何学Pythondview, in asp.net.
And I am not able to do that...
Can someone help in solving it, with a code...
Use the following:
String text = this.gridView.Rows[3].Cells[2].Text;
精彩评论