如何在GridView中FindControl到該row
我有一個GridView動態產生很多row而每個row裏面有一個ImageButton
我希望ImageButton按下去之後,可以FindControl該row裏Label3的值
string
n = ((Label)(this
.GridView1.Rows[0].Cells[0].FindControl("Label3"
))).Text;
Response.Write(n.ToString());
我這樣打 它只次只會找到第一行的Label3的值,但我要如何輸入,才能找到按鈕被按下的那一行呢?
謝謝指導 --------------------编程问答-------------------- RowDataBound事件里面
可以Label label=e.row.findContro("Label3")as Label
Session["label"]=label.text;
按钮按的时候调用下Session就行啦
补充:.NET技术 , ASP.NET