Sir,
That is a very nice article by you. Actually what i want to do is:
I am populating a DATATABLE OBJECT with data from sql table and then binding it to gridview like this:
gv.DataSource=DT;
gv.DataBind();
In this gridview when i update any data it should not affect the actual sql table but only the DATATABLE OBJECT which i again want to bind it to griview.
My problem here is if i have say some 2 or more rows. And i update 1 row how to reflect it in DATATABLE OBJECT if i am using gridview updating event?