TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Raja
NA
2k
356.8k
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
Reply
Answers (
2
)
How to round off the value and disabled the textbox inASPNET
How to read the mail from gmail and download the attachment.