Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はMVCプロジェクトに取り組んでいます。解決策が必要な問題は、Gridview で選択した行の値 (id または何か) をボタンのクリックで取得する方法です。
選択は、CheckBox または行をクリックすることによって行うことができます。
これを試して :
txtid .Text = Gridview1.SelectedRow.Cells[1].Text;
GridView.SelectedIndex選択した行を指す値を使用してみてください。次に、 を使用しGridView1.Rows[SelectedIndex].Cells[1].Textてセル内の値を取得します。
GridView.SelectedIndex
GridView1.Rows[SelectedIndex].Cells[1].Text