Raja

Raja

  • 544
  • 2k
  • 345.1k

how to get the gridview cell value in button click?

Aug 9 2017 2:16 AM
I bind the datatable in gridview in this grid view checkbox also have
 
 
if any check box is selected then get the cell value of the check box selected row i use some methods but not working 
 
protected void btnUpdate_Click(object sender, EventArgs e)
{
  TextBox TextBox1 = new TextBox();
foreach (GridViewRow gr in GridView1.Rows)
{
bool isChecked = ((CheckBox)gr.FindControl("chkBxSelect")).Checked;
if (isChecked)
{


//first method
string myvalue = GridView1.Rows[1].Cells[1].ToString();


// second method
GridViewRow row = GridView1.SelectedRow;
TextBox1.Text = row.Cells[0].Text;
try
{
// dt1.Rows.Add(Convert.ToString(GridView1.Cells[1].Text), "", "", "", "");

}

catch (Exception ex)
{
continue;
}
}
}
 }
 
how to get the value

Answers (2)