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.
我有一个GridView我想从所选行的第 26 列中的单元格中获取文本值的地方TextBox(命名为txtResult)。单元格不可见(其Visible属性为false)。
GridView
TextBox
txtResult
Visible
false
我试过这个:
txtResult.Text = grdMyGrid.SelectedRow.Cells[26].Text;
提前感谢您的帮助!
不要在后面的代码(.aspx)上设置常规列属性的不可见性,通过 RowDataBound 事件来实现。我相信这样你就会得到价值。
你最好试试这段代码:
dataGridView1.SelectedRows[0].Cells["ColummName"].Value.ToString();