VB不会,思路是在某行某列查找控件,并通过其实例获取值,假定第二行第三列有个Lable1,C#代码: Label lbl = GridView1.Rows[1].Cells[2].FindControld("Label1") as Label; if(lbl!=null) { string txt = lbl.Text; }