Posted on: 10/2/2015 6:39:27 PM | Views : 877

Hello everyone click the chechbox event then in gridview data upload in form textbox upload.How can I do. My code is below. Can anyone help me please..
protected void chkcsec_CheckedChanged1(object sender, EventArgs e) { string deleting; string deleting1; string deleting2; string deleting3; string deleting4; foreach (GridViewRow row in GridView1.Rows) { CheckBox chk = (CheckBox)row.FindControl("chkcsec"); if (chk != null && chk.Checked == true) { deleting= row.Cells[2].Text; deleting1= row.Cells[3].Text; deleting2= row.Cells[4].Text; deleting3 = row.Cells[5].Text; deleting4= row.Cells[6].Text; txtGuncelle.Visible = true; txtGuncelle.Text = silinecek; ...

Go to the complete details ...