Click here to Skip to main content
15,900,714 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to update a particular column in gridview
Posted

 
Share this answer
 
Hi,

use this.

C#
int columnIndex=2;
foreach(GridViewRow row in GridView1.Rows)
{
    row.Cells[columnIndex].Text="New Value";
}

//This will update all rows of column 2 with "New Value".


Hope it works.
 
Share this answer
 
Your question needs more elaboration. Based on your question I can only redirect you HERE[^] for vast options.
 
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