獲取Gridview中ButtonField的text屬性。本站提示廣大學習愛好者:(獲取Gridview中ButtonField的text屬性)文章只能為提供參考,不一定能成為您想要的結果。以下是獲取Gridview中ButtonField的text屬性正文
<asp:BoundField>用cell[2].text取到值。但<asp:HyperLinkField>和<asp:ButtonField>經過cell[0].Text和cell[13].Text取的值都是""。應如何取到值呢?
首先將ButtonField按鈕的銜接改為Button形式,然後就可以經過以下語句失掉text值
Response.Write(((HyperLink)e.Row.Cells[0].Controls[0]).Text);
Response.Write((Button)BStationGridView.Rows[RowIndex].Cells[13].Controls[0]).Text);