程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Access數據庫 >> Access數據庫入門 >> 獲得Gridview中ButtonField的text屬性

獲得Gridview中ButtonField的text屬性

編輯:Access數據庫入門

獲得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);

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved