asp.net獲取選中的行方法:
先在你所要選擇的字段上添加一個命令:CommandName,并為它賦值,如:
<asp:LinkButtonID="LinkButton1"runat="server"CommandName="delete">詳細</asp:LinkButton>
相關事件中的代碼:
stringstr=this.GridView1.Rows[e.RowIndex].Cells[0].ToString();
或:stringstr=this.GridView1.DataKeys[e.RowIndex].Value.ToString();//綁定了數據源