I have three gridviews. First one is the parent grid which contains following fields
ItemCode Itemname NewCode SellingPrice PurchasePrice MRP
1 Soap 1
2 Bag 2
3 Cycle 3
4 Scissors 4
5 Pen 5
Second Gridview has the following fields
ItemCode NewCode
1 55874
2 889746210
5 466897
Third Grdview have following fields
ItemCode SellingPrice PurchasePrice MRP
1 25 20 25
2 150 130 150
3 7500 6500 7500
4 20 17 17
5 10 8 10
I want to combine these values and update the parent gridview as follows
ItemCode Itemname NewCode SellingPrice PurchasePrice MRP
1 Soap 55874 25 20 25
2 Bag 889746210 150 130 150
3 Cycle 3 7500 6500 7500
4 Scissors 4 20 17 17
5 Pen 466897 10 8 10
I want to use ASP.net code for this.
Please help