Tech
Forums
Jobs
Books
Events
Videos
Conference
Annual Conference
Bcrypt
Ai Conference
Live
More
Interviews
Certification
Training
Career
Members
News
Blogs
Post
An Article
A Blog
A Video
An Ebook
An Interview Question
Register
Login
2
Reply
how to get the gridview cell value in button click?
Raja
7 years ago
387
Reply
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
Post
Reset
Cancel
Answers (
2
)
Next Recommended Forum
How to round off the value and disabled the textbox inASPNET
How to read the mail from gmail and download the attachment.