Click here to Skip to main content
15,901,666 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi all I have a gridview that gets populated by a in memmory data table. when the user selects the row in the gridview i want the user to be able to edit the data in the in memmory table not in the database.

ID,name ,surname
1 ,Divan,Du piesanie//this would be the selected row I want to change the name to Abel
2 ,bill ,benington

How do I do the update.
Posted

int index = GridView2.SelectedIndex;

System.Data.DataTable dt = new System.Data.DataTable();
dt = (System.Data.DataTable)ViewState["SelectedRecords"];


DataRow dr = dt.Rows[index];

dr["F1"] = DropDownTitle.SelectedValue ;// is the column name in the datatable
dr["F2"] = txtName.Text;
dr["F3"] = txtSurname.Text ;
dr["F4"] = txtCellNum.Text;
dr["F5"] = txtRef.Text;
dr["F6"] = txtDob.Text;

ViewState["SelectedRecords"] = dt;


GridView2.DataSource = dt;
GridView2.DataBind();
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900