ASP.NET C#中如何从GridView控件中抓数据显示到textbox中

2024-11-15 21:03:38
推荐回答(5个)
回答1:

用gridView的双击事件,然后获取当前行的所要的单元格内容,赋值给textbox就可以了

回答2:

private void dataGridView1_MouseUp(object sender, MouseEventArgs e)
{
DataGridViewSelectedRowCollection myrows = dataGridView1.SelectedRows;
foreach (DataGridViewRow myrow in myrows)
{
this.textBox1.Text = myrow.Cells[0].Value.ToString();
this.textBox2.Text = myrow.Cells[1].Value.ToString();
this.textBox3.Text = myrow.Cells[2].Value.ToString();

}
}

回答3:

用this.dataGridView1.SelectedRows[0].Cells[0].Value.tostring();获单元格的内容再赋值给textbox就好了弯简。 这里帆卜面的0可以换成列态闹穗名。

回答4:

string msidDTSID = GridView1.CurrentRow.Cells["DTSID"].Value.ToString();
this.textbox.Text=msidDTSID;

["芦者DTSID"] 是点击前知那一慧哗消格

回答5:

asp527